本文用途:快速备忘,方便调用,写熟了自然就记下了。
【1、标签label】
读取:ui->label->text()
写入:ui->label->setText("poi");
【2、单行文本框lineEdit】
读取:ui->lineEdit->text()
写入:ui->lineEdit->setText("poi");
【3、单行文本框textEdit】
读取(文本):ui->textEdit->toPlainText()
读取(富文本):ui->textedit->toHtml()
写入:ui->textEdit->setText("poi");
追加:ui->textEdit->append("jfz");
【4、spinBox】
读取:ui->spinBox->text()
【5、doubleSpinBox】
读取:ui->doubleSpinBox->text()
【6、comboBox】
读取:ui->comboBox->currentText()
【7、radioButton】
读取:ui->radioButton->isChecked()
【8、checkBox】
【Qt|Qt常用UI控件读取、写入方法】读取:checkBox->checkState() == Qt::Checked
推荐阅读
- c/c++|有感 Visual Studio 2015 RTM 简介 - 八年后回归 Dot Net,终于迎来了 Mvc 时代,盼走了 Web 窗体时代...
- 个人日记|K8s中Pod生命周期和重启策略
- C/C++|C/C++ basis 02
- 学习分享|【C语言函数基础】
- C++|C++浇水装置问题
- 数据结构|C++技巧(用class类实现链表)
- C++|从零开始学C++之基本知识
- 步履拾级杂记|VS2019的各种使用问题及解决方法
- leetcode题解|leetcode#106. 从中序与后序遍历序列构造二叉树
- Qt实战|Qt+OpenCV联合开发(二十一)--图像翻转与旋转