我制作了一个可运行的示例来演示错误的行为: http: //pastebin.com/8KpzD4pw
这个问题非常严重。我在保存文件时有一个wx.ProgressDialog
up ,然后IOError
我想关闭进度对话框并显示一条错误消息。不幸的是,这似乎是不可能的。在消息框关闭之前,进度对话框公然拒绝关闭:
如您所见,消息框出现在进度对话框下方,因此用户必须手动将焦点切换到消息框才能查看其内容。当消息框关闭时,进度对话框也会消失。这是保存功能的代码:
def save(self, path=None):
# Show a loading dialog while the document is staving.
progress = shared.show_loading(self, 'Saving document')
try:
raise IOError('Error message')
if not path:
self.document.save()
else:
self.document.save_to_file(path)
except IOError as e:
progress.done()
message = 'Failed to save file:\n\n{}'.format(e.message)
wx.MessageBox(message, 'Error', wx.OK | wx.ICON_ERROR)
progress.done()
show_loading
和progress.done
函数只是使用wx.ProgressDialog
( source )的快捷方式。
为什么在打开消息框之前进度对话框没有消失?我该如何解决?
我也尝试使用wx.CallAfter
打开消息框,但无济于事:
# ...
except IOError as e:
message = 'Failed to save file:\n\n{}'.format(e.message)
def show_error():
wx.MessageBox(message, 'Error', wx.OK | wx.ICON_ERROR)
progress.done()
wx.CallAfter(show_error)
# ...
我还尝试在关闭进度对话框和使用wx.MicroSleep
未成功打开消息框之间睡 100 毫秒。
我也尝试过在销毁进度对话框后立即调用wx.Yield()
,wx.WakeUpIdle()
但都没有任何效果。