wxPython 相当于 Tkinter .after()
wxPython 中是否有相当于 Tkinter 的 .after() ?
对于那些不知道 .after() 允许在未来某个时刻运行函数的人。这可用于使用函数创建循环。
我正在尝试制作一个时钟,所以这对于让它滴答作响会很方便。
Is there an equivalent to Tkinter's .after() in wxPython?
For those that don't know .after() allows the running of functions at some point in the future. This can be used to make loops with functions.
I'm attempting to make a clock, so this would be handy for making it tick.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要回答您的具体问题,您可以使用 wx.CallAfter 和wx.CallLater。前者大致相当于 tkinter 的
after_idle
命令,后者与after
相同(即:需要等待多少毫秒作为参数)您可以使用 wx.Timer 选项,其中 wx.CallLater 为基础。这使您可以更好地控制计划的作业,允许您取消或重新启动它们(类似于您可以使用 tkinter 的
after_cancel
执行的操作)To answer your specific question, you can use wx.CallAfter and wx.CallLater. The former is roughly equivalent to tkinter's
after_idle
command, and the latter is the same asafter
(ie: it takes a number of milliseconds to wait as an argument)As a third option you can use wx.Timer, upon which wx.CallLater is based. This gives you more control over the scheduled jobs, allowing you to cancel or restart them (similar to what you can do with tkinter's
after_cancel
)wx.Python 中有几个函数可以做到这一点。
您应该检查 wxPython 演示的“进程和事件”部分,更具体地说是与 wx.Timer 相关的部分
There are several functions in wx.Python to do that.
You should check the "Process and events" section of the wxPython demos, More especifically those related with wx.Timer