standarddialog专题

QT 编程,StandardDialog、 QFileDialog

1、StandardDialog:       1、 模态对话框:               QDialog dialog(this);               dialog.resize(300, 200);               //当使用QDialog::exec()成员函数的时候,弹出的对话框是模态对话框,会阻止用户的输入,直到用户关闭它