Frage

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

War es hilfreich?

Lösung 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)

Andere Tipps

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top