调用app.MainLoop()后更新wxPython进度条
我有一个执行计算的 python 脚本,并且我已经为弹出 wxPython 进度条创建了一个类。目前我有:
app=wx.App()
progress = ProgressBar()
app.MainLoop()
for i in xrange(len(toBeAnalysed)):
analyse(toBeAnalysed[i])
progress.update(i/len(toBeAnalysed)*100)
现在,这个例子由于明显的原因不起作用。有什么方法可以在不同的线程中运行 app.MainLoop() 但在计算完成时仍然传达进度(和 .update() )?
感谢您的帮助。
I have a python script that performs a calculation, and I have created a class for a pop-up wxPython progress bar. Currently I have:
app=wx.App()
progress = ProgressBar()
app.MainLoop()
for i in xrange(len(toBeAnalysed)):
analyse(toBeAnalysed[i])
progress.update(i/len(toBeAnalysed)*100)
Now, this example doesn't work for obvious reasons. Is there any way I can run the app.MainLoop() in a different thread but still communicate the progress (and .update() it) as the calculations are completed?
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在后台线程中运行逻辑并使用 wx.CallAfter 定期更新 GUI。 CallAfter 将在 GUI 线程上调用提供的函数,因此进行 GUI 调用是安全的。
You should run your logic in a background thread and use
wx.CallAfter
to periodically update the GUI.CallAfter
will invoke the provided function on the GUI thread, so it is safe to make GUI calls.