【qt】Qt中单独添加UI文件

Qt中单独添加UI文件

把cmainwidget.ui中的widget名字改成cmainwidget,注意ui不可以是第二个mainwindow(程序只能一个)

每次在Qt中单独添加UI文件的时候,都会遇到这个问题。需要注意这么几点
切记要与类名保持一致
举个栗子我的类名叫

CMainWidget

那我的文件名就叫

  1. cmainwidget.h
  2. cmainwidget.cpp

 

那需要在cmainwidget.h头文件中添加

  1. namespace Ui {
  2. class cmainwidget;
  3. }

在cmainwidget.cpp添加

#include "ui_cmainwidget.h"

添加私有成员变量

  1. private:
  2. 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

posted @ 2021-02-04 09:21  carrotmvp  阅读(721)  评论(0编辑  收藏  举报