Qt动态加载ui文件,并自定义控件
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#ifndef QTHELLOWORLD_H #define QTHELLOWORLD_H #include <QtUiTools/QtUiTools> //需要在项目链接中加 QtUiTools.lib #include <QFile> #include <QpushButton> #include <qtextedit> class QtHelloWorld:public QWidget { Q_OBJECT //这个相当重要,只有加入了Q_OBJECT,你才能使用QT中的signal和slot机制。 public: QtHelloWorld(QWidget *parent=0,Qt::WindowFlags name=0); int showDialog(); private slots: void btnTest_clicked(); }; #endif |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
#include "QtHelloWorld.h" QWidget *wHelloWorld; QtHelloWorld::QtHelloWorld(QWidget *parent,Qt::WindowFlags name) :QWidget(parent,name) { } int QtHelloWorld::showDialog() { QUiLoader uiLoader; QFile file("QtHelloWorld.ui"); QWidget *widget=uiLoader.load(&file); if (widget) { QPushButton *btnTest=widget->findChild<QPushButton *>("btnTest"); if (btnTest) { QObject::connect(btnTest,SIGNAL(clicked()),this,SLOT(btnTest_clicked())); } widget->show(); wHelloWorld=widget; return 0; } return 1; } void QtHelloWorld::btnTest_clicked() { QTextEdit *edit=wHelloWorld->findChild<QTextEdit *>("txtInput"); QLabel *lbl=wHelloWorld->findChild<QLabel *>("lblShow"); if (edit) { QString s=edit->toPlainText(); if (lbl) lbl->setText(s); } } |
1 2 3 4 5 6 7 8 9 10 11 |
#include <QtGui/QApplication> #include "QtHelloWorld.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); QtHelloWorld helloWorld; helloWorld.showDialog(); return a.exec(); } |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=1135