如何在 wx.Python 中创建重启按钮 - Python
所以我有一个可以打开并执行操作的程序。但是,有没有办法重新启动打开的框架,或者有没有办法再次关闭并打开框架而无需重新运行程序?
So I have a program that opens up and does stuff.. However, is there a way to either restart the frame that is open or is there a way to close and open the frame again without have to rerun the program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下任一方法:
frame.Iconize()
最小化窗口使用以下命令隐藏它方法:
使用第二种选择时,框架会消失,因此您需要某种方法来回调框架(可能会留下可见的小父框架或子框架,并带有一个按钮来调用隐藏框架) .
编辑:正如@Fenikso下面所示,恢复隐藏窗口的最佳方法是使用
wx.TaskBarIcon
。您在下面的评论中有一个例子。You can use either:
frame.Iconize()
to minimize your windowHide it using methods:
With the second alternative the frame disappears, so you need some method to call your frame back (maybe leaving visible a small parent or child frame with a button to call the hidden frame).
Edit: As @Fenikso indicates below, the best way to get back your hidden window is using
wx.TaskBarIcon
. You have an example in the comments below.