qt 中的 java 等效面板
我想知道 QT 中的 Java 面板等效项。我的意思是我们需要在QT中使用哪个类,即qframe或qwidget。我需要向 QT 主窗口添加许多面板。
I would like to know the Java panel equivalent in QT. I mean which class do we need to use in QT, i.e. qframe
or qwidget
. I need to add many panels to my QT mainwindow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QFrame
、QScrollArea
等具有处理面板外观的属性,适用于组件容器和表单布局。QWidget
没有frameShape()
、frameShadow()
或lineWidth()
,但它有布局和大小操作方法,因此如果您不需要边框、滚动、停靠或其他附加行为,它也可以用作面板。QFrame
,QScrollArea
, etc. have properties that handle panel appearance and are suitable for component containers and form layout.QWidget
has noframeShape()
,frameShadow()
, orlineWidth()
, but it has layout and size operation methods, so it can also be used as a panel if you do not need borders, scroll, docking or other additional behavior.