使用 QFrame 显示不同的信息窗格?
我试图让 QFrame 充当几种不同类型信息的“显示区域”,例如:您单击列表视图中的某些内容,框架中会显示一个信息窗格 为了向您提供有关它的信息,您单击不同的项目,然后会显示不同的窗格。
但是,在将不同的框架换入和换出 QFrame 时遇到问题,有没有办法做到这一点?
I'm trying to get a QFrame to serve as a "display area" for a couple different kinds of information, eg: you click on something in a list view and an info pane shows up in the frame
to give you information about it, you click on a different item and a different pane shows up.
Having trouble swapping the different frames in and out of the QFrame though, is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
QStackedWidget
可能是最标准的解决方案。Using
QStackedWidget
is probably the most standard solution.