1 包含生成的UI头文件:
#include "ui_test.h"
2 实例化UI类:.h文件中实例化ui
private:
Ui::testClass ui; // 这里假设生成的UI类名为Ui::testClass
3 类名与UI文件中的主窗口名一致
class Test : public QMainWindow {
Q_OBJECT
public:
explicit Test(QWidget *parent = nullptr);
~Test();
private:
Ui::testClass ui; // 使用Ui::testClass,即testClass是主窗口名
};
4 Form Flies要删除原有的ui 然后添加现有项
5 生成->重新生成解决方案