如何在同一空间显示2个小部件?
我有一个主窗口,我想在同一个空间上放置 2 个小部件,即当用户单击一个按钮时,其中一个小部件应该出现在前面,另一个小部件应该隐藏,然后在单击另一个按钮时更改位置。
我的 Widget 有不同类型:一种是 QGLWidget,另一种是 QGraphicsView。
我怎样才能把这两个小部件放在同一个地方?
I have this main window on which I would like to put 2 widgets on the same space, i.e. when the user clicks a button then one of the widgets should come up front and the other be hidden and then change places when clicking another button.
My Widget are of different types: one is a QGLWidget and the other one is a QGraphicsView.
How could I put these 2 widgets on the same place?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用QStackedWidget。 Qt 文档说:
Use QStackedWidget. Qt Doc says that :