How to use Qt Designed Ui file

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How to use Qt Designed Ui file相关的知识,希望对你有一定的参考价值。

Ui Designed file

  1. In Working, we can use Qt Designer to designe UI;
  2. Then, use uic -o head.h designe.ui to create ui_header.h file;
  3. When use this Ui, First, include head file, then
namespace Ui {
    class Edit: public Ui_Form {};
} // namespace Ui
    QWidget* wgt = new QWidget(this);
    Ui::Edit* it = new Ui::Edit;
    it->setupUi(wgt);

以上是关于How to use Qt Designed Ui file的主要内容,如果未能解决你的问题,请参考以下文章

How to use Fiddler to monitor WCF service

How to use MJRefresh

How to Use SFTP ?

Learn how to use Latex.

How to use GITHUB to do source control

How to use GITHUB to do source control