wxPython 相当于 Tkinter .after()

发布于 2024-10-20 04:11:37 字数 170 浏览 5 评论 0原文

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

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

发布评论

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

评论(2

爱给你人给你 2024-10-27 04:11:37

要回答您的具体问题,您可以使用 wx.CallAfterwx.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 as after (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)

∞琼窗梦回ˉ 2024-10-27 04:11:37

wx.Python 中有几个函数可以做到这一点。
您应该检查 wxPython 演示的“进程和事件”部分,更具体地说是与 wx.Timer 相关的部分

wx.Timer 类允许您
按指定的时间间隔执行代码
来自 wxPython 事件循环内。
计时器可以是一次性的,也可以是重复的。
这个demo展示了原理方法
也使用计时器(带有事件)
作为方便的 wx.FutureCall 类。

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

The wx.Timer class allows you to
execute code at specified intervals
from within the wxPython event loop.
Timers can be one-shot or repeating.
This demo shows the principle method
of using a timer (with events) as well
as the convenient wx.FutureCall class.

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