博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Qt widgets
阅读量:6507 次
发布时间:2019-06-24

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

1,Qt部件Widgets--CheckWidgets,安置其他部件的Widgets,让用户选择数值的部件

选择部件---使用户能够从预定义的条目菜单中做出选择,combination

QListBox,QComboBox,列表组合框

QListBox列表框部件一般用于使用户从中选择一个或多个条目,条目通常为文本类型,也可以是位图

QComboBox *combobox;

combobox = new QComboBox(false,this);设置组合框是否为读写,部件父对象

2,部件布局--程序中合理安排部件使程序看起来美观,从而更容易使用

部件类

QGroupBox,QButtonGroup,QSplitter,QWidgetStack

3,QGroupBox用于在部件周围绘制一个框架,在框架的上端添加描述信息

g++ -c -pipe -O2 -Wall -W -D_REENTRANT -fPIE -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -I. -I/opt/Qt5.4.1/5.4/gcc_64/include -I/opt/Qt5.4.1/5.4/gcc_64/include/QtWidgets -I/opt/Qt5.4.1/5.4/gcc_64/include/QtGui -I/opt/Qt5.4.1/5.4/gcc_64/include/QtCore -I. -I/opt/Qt5.4.1/5.4/gcc_64/mkspecs/linux-g++ -o box.o box.cpp

box.cpp: In constructor ‘MyMainWindow::MyMainWindow()’:
box.cpp:24:22: error: ‘AlignHCenter’ was not declared in this scope
  label->setAlignment(AlignHCenter | AlignVCenter);
                      ^
box.cpp:24:22: note: suggested alternative:
In file included from /opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qbytearray.h:38:0,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qstring.h:38,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qcoreapplication.h:38,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtWidgets/qapplication.h:37,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtWidgets/QApplication:1,
                 from box.cpp:1:
/opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qnamespace.h:232:9: note:   ‘AlignHCenter’
         AlignHCenter = 0x0004,
         ^
box.cpp:24:37: error: ‘AlignVCenter’ was not declared in this scope
  label->setAlignment(AlignHCenter | AlignVCenter);
                                     ^
box.cpp:24:37: note: suggested alternative:
In file included from /opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qbytearray.h:38:0,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qstring.h:38,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qcoreapplication.h:38,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtWidgets/qapplication.h:37,
                 from /opt/Qt5.4.1/5.4/gcc_64/include/QtWidgets/QApplication:1,
                 from box.cpp:1:
/opt/Qt5.4.1/5.4/gcc_64/include/QtCore/qnamespace.h:239:9: note:   ‘AlignVCenter’
         AlignVCenter = 0x0080,
         ^
make: *** [box.o] Error 1

创建和放置分组框架,QGroupBox::setTitle("");设置分组框的标题

4,QButtonGroup与QGroupBox 相似,有一些布局按钮方面的特殊功能

QButtonGroup对象的最常用的方法是布置单线按钮,在QButtonGroup

setExclusibe()

5,QSplitter()拆分对象使用户能够通过拖动拆分器所提供的部件间的分割线控制子部件的大小

 

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

你可能感兴趣的文章
使用Spring Cloud和Docker构建微服务
查看>>
常用链接
查看>>
NB-IoT的成功商用不是一蹴而就
查看>>
九州云实战人员为您揭秘成功部署OpenStack几大要点
查看>>
1.电子商务支付方式有哪些 2.比较不同支付方式的优势劣势
查看>>
医疗卫生系统被爆漏洞,7亿公民信息泄露……
查看>>
神秘函件引发的4G+与全网通的较量
查看>>
CloudCC:智能CRM究竟能否成为下一个行业风口?
查看>>
高德开放平台推出LBS游戏行业解决方案提供专业地图平台能力支持
查看>>
追求绿色数据中心
查看>>
Web开发初学指南
查看>>
OpenStack Days China:华云数据CTO郑军分享OpenStack创新实践
查看>>
探寻光存储没落的真正原因
查看>>
高通64位ARMv8系列服务器芯片商标命名:Centriq
查看>>
中国人工智能学会通讯——融合经济学原理的个性化推荐 1.1 互联网经济系统的基本问题...
查看>>
盘点大数据商业智能的十大戒律
查看>>
戴尔为保护数据安全 推出新款服务器PowerEdge T30
查看>>
今年以来硅晶圆涨幅约达40%
查看>>
构建智能的新一代网络——专访Mellanox市场部副总裁 Gilad Shainer
查看>>
《数字视频和高清:算法和接口》一导读
查看>>