QLineEdit text()、setText()、 QString toDouble()、setNum()、 static修饰的number()、 QComboBox addItem()、 addItems() 、currentText()、 QStringList append()、 << 、 push_back()、 push_front() QLabel QPushButton clicked() QMessageBox static修饰的 warning类的说明以及函数的功能详解
时间: 2023-06-17 20:02:51 浏览: 90
QTextEdit 实现 QLineEdit 的 setPlaceholderText() 和 setMaxLength ()函数
1. QLineEdit
- text(): 返回QLineEdit控件中的文本内容;
- setText(): 设置QLineEdit控件的文本内容;
- toDouble(): 将QLineEdit控件中的文本内容转换为double类型;
- setNum(): 将数字转换为QString类型并设置为QLineEdit控件的文本内容;
- static修饰的number(): 将数字转换为QString类型。
2. QComboBox
- addItem(): 向QComboBox控件添加一个新的项;
- addItems(): 向QComboBox控件添加多个新的项;
- currentText(): 返回QComboBox控件中当前选中的项的文本内容。
3. QStringList
- append(): 向字符串列表中添加一个新的字符串;
- <<: 向字符串列表中添加一个新的字符串;
- push_back(): 向字符串列表尾部添加一个新的字符串;
- push_front(): 向字符串列表头部添加一个新的字符串。
4. QLabel
- 用于显示文本或图像。
5. QPushButton
- clicked(): 当QPushButton控件被点击时触发该信号。
6. QMessageBox
- static修饰的warning类:用于显示一个警告框;
- warning函数:用于在警告框中显示指定的文本内容。
阅读全文