如何将小部件插入 Qt 设计器生成的主窗口中?
我有一个使用 Qt Designer 构建的主窗口,还有一个使用 Qt Designer 构建的小部件(两者都在单独的 ui 文件中)。如何在运行时将小部件实例化到主窗口中?
I have a Main window build with Qt Designer and I also have a widget built with Qt designer (both in a separate ui file). How can I instantiate my widget into my mainwindow at runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法(使用 Designer)是打开主窗口,将
QWidget
拖入其中,然后像自定义小部件一样定位/命名QWidget
。完成后,右键单击QWidget
,然后选择升级到...。将显示一个对话框,其中包含可以升级到的小部件。在该对话框的底部,您可以添加新的小部件以进行促销。输入类名称并包含文件信息,然后添加该小部件。然后选择列表中的条目,然后单击升级按钮。在此过程结束时,您应该能够重新编译,并且您的自定义小部件将位于您将其放置在主窗口中的位置。
The easiest way (using Designer) is to open your main window, drag a
QWidget
into it, and position/name theQWidget
like you would your custom widget. Once that is done, right-click on theQWidget
, and select Promote to.... A dialog will show up with the widgets it can be promoted to. At the bottom of that dialog, you can add a new widget for promotion. Type in the class name and include file information, and add that widget. Then select the entry in the list, and click the Promote button.At the end of this process, you should be able to recompile, and your custom widget will be where you placed it in the main window.
你不能使用 QMainWindow::setCentralWidget 函数吗?
Can't you use QMainWindow::setCentralWidget function?