thirdDialog.h 代码如下: #ifndef THIRDDIALOG_H #define THIRDDIALOG_H #include QtGui #include "ui_third.h" class thirdDialog:public QDialog,private Ui::Third { Q_OBJECT public: thirdDialog(QWidget *parent=0); ~thirdDialog(); }; #endif thirdDialog.cpp #include "thirdDialog.h" thirdDialog::thirdDialog(QWidget *parent) { setupUi(this); } thirdDialog::~thirdDia...
[ 查看全文 ]