- 1、本文档共2页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
QThelloworld
#includeQtGui/QApplication#includemainwindow.h#includeQtGui/QLabel
intmain(intargc,char*argv[])
{
QApplicationa(argc,argv);MainWindoww;
w.show();
QLabel*hello=newQLabel(hello,world);hello-show();
QLabel*hello2=newQLabel(h2iHello/i
fontcolor=redQt!/font/h2);
hello2-show();returna.exec();
}
======================================================
#includeQtGui/QLabel#includeQtGui/QPushButton
intmain(intargc,char*argv[])
{
QApplicationa(argc,argv);MainWindoww;
w.show();
// QLabel*hello=newQLabel(hello,world);
// hello-show();
// QLabel*hello2=newQLabel(h2iHello/i
// fontcolor=redQt!/font/h2);
// hello2-show();
QPushButton*button=newQPushButton(quit);QObject::connect(button,SIGNAL(clicked()),a,SLOT(quit()));button-show();
returna.exec();
}
Layout
#includeQtGui/QApplication#includemainwindow.h#includeQtGui/QLabel#includeQtGui/QPushButton#includeQApplication#includeQHBoxLayout#includeQSlider
#includeQSpinBox
intmain(intargc,char*argv[])
{
QApplicationapp(argc,argv);QWidget*window=newQWidget;
window-setWindowTitle(EnterYourAge);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*layout=newQHBoxLayout;layout-addWidget(spinBox);
layout-addWidget(slider);window-setLayout(layout);window-show();
QWidget*window2=newQWidget;
window2-setWindowTitle(EnterYourAge);QVBoxLayout*layout2=newQVBoxLayout;layout2-addWidget(spinBox);
layout2-addWidget(slider);window2-setLayout(layout2);window2-show();
returnapp.exec();
}
Qt有三个主要的布局管理器:
QHBoxLayout:水平排列控件。QVBoxLayout:垂直排列控件。QGridLayout:按矩阵方式排列控件
您可能关注的文档
- photoshop学习教程分析和总结.docx
- Photoshop迎新春鞭炮步骤.docx
- Photoshop用素材合成燃烧的火焰字效果.docx
- photoshop制作非主流圆点的背景.docx
- Photoshop中常用快捷键.docx
- Photosho快捷键Photosho快捷键大全.docx
- PHP本地测试环境.docx
- pH计的校正方法.docx
- PID调节器分析和总结.docx
- PID控制分析和总结.docx
- 2024年西藏拉萨市企业人力资源管理师之一级人力资源管理师考试通用题库及答案(真题汇编).docx
- 2024年西藏林芝地区企业人力资源管理师之一级人力资源管理师考试真题题库带精品答案.docx
- 2024年西藏阿里地区企业人力资源管理师之一级人力资源管理师考试大全及答案【精选题】.docx
- 2024年福建省龙岩企业人力资源管理师之一级人力资源管理师考试题库大全精品(考试直接用).docx
- 2024年组织部门年度工作总结范本(2篇).pdf
- 新课程背景下高效课堂的研究 .pdf
- 2024年西藏日喀则地区企业人力资源管理师之一级人力资源管理师考试真题(名校卷).docx
- 2024年精品客运服务质量管理制度(三篇) .pdf
- 2024年西藏昌都地区企业人力资源管理师之一级人力资源管理师考试真题及答案(新).docx
- 2024年西藏日喀则地区企业人力资源管理师之四级人力资源管理师考试完整题库【含答案】.docx
最近下载
- 国家森林公园总体规划规范.doc VIP
- Unit 5 The colourful world Part C Reading time大单元教学设计 人教PEP版三年级英语上册2024.pdf
- 2024年疾控大学习全球预防接种进展答案.docx VIP
- 《体教融合文献综述》.docx VIP
- 2018年国家公务员考试《公安专业科目》真题及解析.pdf VIP
- 古代汉字对外传播史.doc
- 采访课件模板.pptx VIP
- 三九控制法——欧博企管.ppt VIP
- GBT 50034-2024 建筑照明设计标准.docx VIP
- 人教PEP五年级上册英语《Unit 4 Read and write 》教学课件.pptx
文档评论(0)