如何在 wx.Python 中创建重启按钮 - Python

发布于 2024-12-14 19:34:39 字数 70 浏览 1 评论 0原文

所以我有一个可以打开并执行操作的程序。但是,有没有办法重新启动打开的框架,或者有没有办法再次关闭并打开框架而无需重新运行程序?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流年里的时光 2024-12-21 19:34:39

您可以使用以下任一方法:

  • frame.Iconize() 最小化窗口

  • 使用以下命令隐藏它方法:

    window.Hide()
    
    window.Show(n) 其中 n= True 或 False 
    

使用第二种选择时,框架会消失,因此您需要某种方法来回调框架(可能会留下可见的小父框架或子框架,并带有一个按钮来调用隐藏框架) .
编辑:正如@Fenikso下面所示,恢复隐藏窗口的最佳方法是使用wx.TaskBarIcon。您在下面的评论中有一个例子。

You can use either:

  • frame.Iconize() to minimize your window

  • Hide it using methods:

    window.Hide()
    
    window.Show(n) with n= True or False 
    

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文