Qt学习笔记
Posted ZooJinGoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt学习笔记相关的知识,希望对你有一定的参考价值。
Qt模态框
QDialog *dialog = new QDialog(&w);
dialog->setModal(true);
dialog->show();
生成的模态框可以线程阻断,setWindowModality()函数有一个参数来设置要阻塞的窗口类型。setWindowModality()函数默认值为Qt::Application,意思为阻塞除它以外的所有窗口。P64
Qt信号与槽
P65
// 在ui_xxx.h文件中
showChildButton->setObjectName(QStringLiteral("showChildButton"));
// 在头文件中
public slots:
void showChildDialog();
// 在xxx.cpp文件中
QtTest::QtTest(QWidget *parent) : QMainWindow(parent)
ui.setupUi(this);
connect(ui.showChildButton, SIGNAL(clicked()), this, SLOT(showChildDialog()));
void QtTest::showChildDialog()
QDialog *dialog = new QDialog(this);
dialog->setModal(true);
dialog->show();
以上是关于Qt学习笔记的主要内容,如果未能解决你的问题,请参考以下文章