博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
QT Basic---Widgets<1>
阅读量:6624 次
发布时间:2019-06-25

本文共 1555 字,大约阅读时间需要 5 分钟。

QLabel ------------------------------------------------------------------------

//#include"mainwindow.h"

#include
#include
 
intmain(intargc,char*argv[])
{
QApplicationapp(argc,argv);
//MainWindoww;
//w.show();
QLabel*label=newQLabel("helloQT");
QLabel*label2=newQLabel("

hello""
QT

");
label->show();
label2->show();
returnapp.exec();
} QPushButton ------------------------------------------------------------------------

#include"mainwindow.h"

#include
#include
//add include file
intmain(intargc,char*argv[])
{
QApplicationa(argc,argv);
//MainWindoww;
//w.show();
QPushButton*button=newQPushButton("Quit");
//add siganl deal QObject::connect(button,SIGNAL(clicked()),&a,SLOT(quit()));
button->show();
returna.exec();
} QSpinBox,QSlider ------------------------------------------------------------------------
 

#include"mainwindow.h"

#include
#include
#include
#include
 
intmain(intargc,char*argv[])
{
QApplicationa(argc,argv);
//MainWindoww;
//w.show();
QWidget*window=newQWidget();
window->setWindowTitle("EnterYourYear:");
 
QSpinBox*spinbox=newQSpinBox();
QSlider*slider=newQSlider(Qt::Horizontal);
spinbox->setRange(0,130);
slider->setRange(0,130);
 
QObject::connect(spinbox,SIGNAL(valueChanged(int)),slider,SLOT(setValue(int)));
QObject::connect(slider,SIGNAL(valueChanged(int)),spinbox,SLOT(setValue(int)));
 
spinbox->setValue(35);
 
QHBoxLayout*boxlayout=newQHBoxLayout();
boxlayout->addWidget(spinbox);
boxlayout->addWidget(slider);
window->setLayout(boxlayout);
 
window->show();
 
returna.exec();
}
 

转载地址:http://wftpo.baihongyu.com/

你可能感兴趣的文章
大道至简,系统设计和模块划分的实用经验之谈
查看>>
正则表达式中参数g、i、m的作用(share)
查看>>
使用Solr构建企业级的全文检索(四)---------写入文档
查看>>
Routing Error uninitialized constant TransController
查看>>
设计模式(二): BUILDER生成器模式 -- 创建型模式
查看>>
git: No refs in common and none specified; doing no
查看>>
I.MX6 天嵌 E9 U-boot menu hacking
查看>>
Eclipse中Android项目引用其他项目时链接源码的方法
查看>>
Mac PD虚拟机卸载删除
查看>>
java中String、StringBuffer、StringBuilder的区别
查看>>
EL 表达式
查看>>
WPF水珠效果按钮组
查看>>
一个不错的命令行解析类
查看>>
I.MX6 FFmpeg 录制视频
查看>>
VHDL语言中buffer与inout的区别
查看>>
关于OSPF的一些问题
查看>>
OpenCASCADE Shape Location
查看>>
squid的正向代理和反向代理
查看>>
重磅消息nginx支持js语言
查看>>
linux下命令与文件的查询
查看>>