如何在 Qt(或 PyQt)中调用一个主窗口到另一个主窗口
在我的项目中,我创建了两个主窗口,我想从 mainwindow1 (正在运行)调用 mainwindow2 。在 mainwindow1 中我已经使用了 app.exec_() (PyQt) 并显示 maindow2 我在按钮的单击事件中使用了 maindow2.show() 但不显示任何内容
In my project i have created two mainwindow i want to call mainwindow2 from the mainwindow1 (which in running). in mainwindow1 i am already used the app.exec_() (PyQt) and to show maindow2 i am using the maindow2.show() in the click event of the button but does not show anything
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用 mainwindow2.show() 应该适合你。你能给出一个更完整的代码示例吗?其他地方可能有问题。
编辑:
更新了代码以显示如何在打开和关闭其他窗口时隐藏和显示窗口的示例。
Calling mainwindow2.show() should work for you. Could you give a more complete example of your code? There may be something wrong somewhere else.
EDIT:
Code updated to show an example of how to hide and show windows when opening and closing other windows.