如何偶尔刷新一次Python脚本?
所以我创建了一个类,其中包含使用 wxPython 的 GUI。 你如何让它每分钟刷新一次?
So I've created a class, which contains GUI using wxPython.
How do you make it so that it refreshes itself say every minute?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于间隔发生的事情,请使用计时器。来自 WxPyWiki:
For things that happen on intervals, use a Timer. From WxPyWiki:
我不使用 wxPython,但如果有一个名为
refresh
或类似方法的方法,您可以每分钟启动一个调用该方法的线程。编辑:修复代码,使其适合 PEP8
I don't work with wxPython, but if there is a method called
refresh
or something alike, you could start a Thread calling that method every minute.EDIT: fixed code so it fits into PEP8
正如 Niklas 所建议的,我认为您正在寻找 Refresh() 方法: http ://wxpython.org/docs/api/wx.Window-class.html#Refresh 。
As Niklas suggested I think you're looking for the Refresh() method: http://wxpython.org/docs/api/wx.Window-class.html#Refresh .