资源简介
窗口主框架。
动态添加。

代码片段和文件信息
#include “frmmain.h“
#include “ui_frmmain.h“
#include “qmessagebox.h“
frmMain::frmMain(QWidget *parent) :
QWidget(parent)
ui(new Ui::frmMain)
{
ui->setupUi(this);
}
frmMain::~frmMain()
{
delete ui;
}
void frmMain::on_btnAdd_clicked()
{
QPushButton *btn=new QPushButton;
btn->setFocusPolicy(Qt::NoFocus);
btn->setText(ui->txtName->text());
btn->setProperty(“btnType“ui->cboxType->currentIndex());
ui->groupBox->layout()->addWidget(btn);
connect(btnSIGNAL(clicked())thisSLOT(on_btn_clicked()));
}
void frmMain::on_btn_clicked()
{
QPushButton *btn=(QPushButton*)sender();
QMessageBox::information(this“hello“btn->text());
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-12-27 20:05 test\
文件 711 2015-01-27 20:50 test\frmmain.cpp
文件 358 2014-12-24 21:48 test\frmmain.h
文件 3676 2014-12-24 21:58 test\frmmain.ui
文件 177 2014-12-24 21:16 test\main.cpp
文件 368 2014-12-24 21:16 test\test.pro
文件 23863 2017-12-27 20:05 test\test.pro.user
文件 11618 2015-01-27 21:01 test\test.pro.user.00f55cf
相关资源
- Qt界面外观
- [嵌入式Linux项目实战开发]基于QT4.7.
- Qt GUI 界面通用系统模板 源码
- 网上的一款QT界面设计的电子地图
- 二维码解析
- linux下关于Qt界面的摄像头v4l2操作源码
- 360UI完美界面
- 净化设备管理
- 基于qt界面的语音交互软件
- 综合组件的界面
- opencv打开图片并显示在Qt界面上
- Qt360 界面
- 动态绘制曲线
- QtitanRibbon3.zip
- VS+QT环境下读取excel文件到QT界面,并
- 基于嵌入式QT界面GPS定位系统
- [嵌入式Linux项目实战开发]基于QT4.7.
- 物联网 智能家居 Qt界面
- 将QT界面做成dll在qt其他程序中调用
-
将xm
l内容显示Qt界面 - DS18B20测温及QT界面实现
- qt界面跳转切换
- 基于v4l的视频采集显示程序。外加Q
- QT计算器界面和计算器功能实现
- qt界面连接wifi
- myseria串口
- 基于Qt界面显示的温湿度检测
- Qt界面多线程opencv调用摄像头
- 智慧大棚QT界面设计
- Qt高仿网易云音乐界面源码
评论
共有 条评论