Qt 小部件 com 问题
我有一个矩形小部件、一个调整大小框小部件和一个文本编辑小部件。如何在不使用布局的情况下组合它们?我希望将它们全部作为一个小部件。
I have a Rectangle widget, and a resize box widget, and a text edit widget. How can I compose them without using layouts ? I want all of them as a single widget.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关如何进行手动布局的文档位于 Qt 布局管理 此处。
您确定不能使用其中一种标准布局吗?您可以使用一个布局(或多个布局)创建一个自定义小部件,其中三个子部件位于内部,并且您的新自定义小部件仍然只是一个小部件。
The documentation for how to do a manual layout is in Qt Layout Management here.
Are you sure you can't use one of the standard layouts? You can make a custom widget with three children positioned inside using a layout (or layouts) and your new custom widget will still be just a single widget.