QDialog
模态对话框:非阻塞
//方法1
TestDialog childWindow ; childWindow.setModal(false); childWindow.exec();//可行
//方法2
TestDialog * childWindow = new TestDialog();
childWindow->setModal(false);
childWindow->show();
在子窗口初始化中加入
setAttribute (Qt::WA_DeleteOnClose);
防止内存泄漏。
非模态对话框:阻塞
//方法1
TestDialog * childWindow = new TestDialog();
childWindow->setModal(true);
childWindow->show();
//方法2 TestDialog* childWindow = new TestDialog();
childWindow->setWindowModality(Qt::WindowModal);
childWindow->show();
QWidget窗口
setWindowModality(Qt::NonModal);
setAttribute(Qt::WA_ShowModal, false);
show();