12 2022 档案
摘要:const QList<QLineEdit*> lineEdits = ui->stackedWidget->currentWidget()->findChildren<QLineEdit*>(); for (QLineEdit *lineEdit : lineEdits) { qDebug() <
阅读全文
摘要://设定选择行为,按行选择 tableWidget->setSelectionBehavior(QAbstractItemView::SelectRows); //设置选中行的背景色,必须要显示设置,即代码设置或者在ui文件的控件中设置,用系统默认的是无法代码选中高亮某行 tableWidget->
阅读全文
摘要:fromComboBox = QComboBox() 添加一个 combobox fromComboBox.addItem(rates) 添加一个下拉选项 fromComboBox.addItems(["%d years" % x for x in range(2, 26)]) 从序列中添加 fro
阅读全文
摘要:this->setAttribute(Qt::WA_TranslucentBackground);//透明 this->setAttribute(Qt::WA_NoSystemBackground, false);//不继承父类窗口背景色 我发现了一个问题:上面两句代码顺序不同时,效果不一样。上述顺
阅读全文
摘要:参考:https://blog.csdn.net/qq_45254369/article/details/125878621 左键按住,拖动窗口 头文件: #ifndef FRAME_H #define FRAME_H #include <QFrame> namespace Ui { class F
阅读全文
摘要:点击按钮,出现一个下拉列表: 主要代码: void WgSetUp::AddItem() { QIcon myicon; //新建QIcon对象 myicon.addFile(tr("../data/skin/image/ui/MenuTools.png")); //让QIcon对象指向想要的图标
阅读全文
摘要:需要在cell中增加按钮。 主要代码(没写类名): void InsertTableInfo(const QStringList &listInfo, bool bChecked) { int nRowCount = ui->tableWidget->rowCount(); ui->tableWid
阅读全文