qt 模態對話框和非模態對話框

1.模態對話框 (1)要想使一個對話框成爲模態對話框,只須要條用它的exec()函數。 QDialog dialog(this); dialog.exec(); (2)show()函數創建模態對話框,調用函數setModal(true)函數便可。 QDialog *dialog = new QDialog(this); dialog->setModel(true); dialog->show();
相關文章
相關標籤/搜索