【qt】Qt中单独添加UI文件
Qt中单独添加UI文件
把cmainwidget.ui中的widget名字改成cmainwidget,注意ui不可以是第二个mainwindow(程序只能一个)
每次在Qt中单独添加UI文件的时候,都会遇到这个问题。需要注意这么几点
切记要与类名保持一致
举个栗子我的类名叫
CMainWidget
那我的文件名就叫
-
cmainwidget.h
-
cmainwidget.cpp
那需要在cmainwidget.h头文件中添加
-
namespace Ui {
-
class cmainwidget;
-
}
在cmainwidget.cpp添加
#include "ui_cmainwidget.h"
添加私有成员变量
-
private:
-
Ui::cmainwidget* ui;
初始化成员变量
ui(new Ui::cmainwidget)
构造函数中
ui->setupUi(this);
最后一条,别忘了
参考博客:https://blog.csdn.net/rjc_lihui/article/details/88397009
如果还是出现这种报错:allocation of incomplete type 'Ui::,清理项目重新打开;
参考博客:https://blog.csdn.net/weixin_39010374/article/details/106076888