wxpython:关闭框架但没有脚本
我有一个脚本,这是对 wx.app 的调用
当我关闭 wx.app 时,会关闭脚本,为什么?
class Frame(wx.Frame):
def _init_ctrls(self, prnt):
...
class BoaApp(wx.App):
def OnInit(self):
self.main = Frame.create(None)
self.main.Show()
self.SetTopWindow(self.main)
return True
def main():
application = BoaApp(0)
application.MainLoop()
if __name__ == '__main__':
main()
I have a script, this call to a wx.app
when I close the wx.app this close the script, why ?
class Frame(wx.Frame):
def _init_ctrls(self, prnt):
...
class BoaApp(wx.App):
def OnInit(self):
self.main = Frame.create(None)
self.main.Show()
self.SetTopWindow(self.main)
return True
def main():
application = BoaApp(0)
application.MainLoop()
if __name__ == '__main__':
main()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您调用
app.MainLoop()
时,脚本将进入运行应用程序的循环。当您关闭应用程序时,循环将退出,并且调用app.MainLoop()
之后的所有代码都会执行。如果没有什么可做的,脚本就会结束。When you call
app.MainLoop()
the script goes into a loop which runs the app. When you close the app the loop exits and any code after the call ofapp.MainLoop()
then executes. If there isn't anything left to do, the script will end.