睡觉前显示无模式 wxDialog

发布于 2024-12-21 10:49:07 字数 262 浏览 1 评论 0原文

我有一个 wxPython 应用程序,我希望对话框显示五秒钟。因为我想做的非常简单,所以我创建了以下代码:

    dlg = WaitDialog(self, "Wait 5 seconds...")
    dlg.Show(True)
    time.sleep(5)
    dlg.close()

问题是 dlg 仅在等待 5 秒后才显示。有没有办法告诉wxPython在到达sleep语句之前更新?

感谢您的帮助

I have a wxPython application where I want a dialog to be displayed for five seconds. Since I wanted to do it really simple, I've created the following code:

    dlg = WaitDialog(self, "Wait 5 seconds...")
    dlg.Show(True)
    time.sleep(5)
    dlg.close()

The problem is that dlg is displayed only after waiting those 5 seconds. Is there any way to tell wxPython to update before reaching the sleep sentence?

Thanks for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

つ低調成傷 2024-12-28 10:49:07

你应该使用 wx.Timer 来代替。使用 time.sleep 将阻塞 wxPython 主循环。请参阅文档 http://www.wxpython.org/docs/api/ wx.Timer-class.html 或本教程:http://www.blog.pythonlibrary.org/2009/08/25/wxpython-using-wx-timers/

You should use a wx.Timer instead. Using time.sleep will block wxPython main loop. See the docs http://www.wxpython.org/docs/api/wx.Timer-class.html or this tutorial: http://www.blog.pythonlibrary.org/2009/08/25/wxpython-using-wx-timers/

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