I have wxpython multi threaded app, bundled using py2exe, that keep running silently as a task-bar application under windows system tray. When I shutdown Windows, it shows following error message:

Error screen http://devzila.com/error.jpg

有帮助吗?

解决方案 2

I'm able to figure it out: wx.EVT_END_SESSION is fired when windows try to close your application during shutdown.

wx.GetApp().Bind(wx.EVT_END_SESSION, self.onClose)

其他提示

Bind wx.EVT_CLOSE event for your application frame. In the callback function end all threads.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top