Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 wxpython 多线程应用程序,使用 py2exe 捆绑,它作为 Windows 系统托盘下的任务栏应用程序保持静默运行。当我关闭 Windows 时,它显示以下错误消息:
错误画面 http://devzila.com/error.jpg
为您的应用程序框架绑定wx.EVT_CLOSE事件。在回调函数中结束所有线程。
wx.EVT_CLOSE
我能够弄清楚:当 Windows 在关闭期间尝试关闭您的应用程序时会触发 wx.EVT_END_SESSION。
wx.GetApp().Bind(wx.EVT_END_SESSION, self.onClose)