我使用wxpython编写了三个独立的GUI。
def __init__(self, app):
self.gui1= Gui1(None)
self.gui1.Show()
self.gui2= Gui2(None)
self.gui2.Show()
self.run_game()
def run_game(self):
for i in range(0, 100):
time.sleep(0.5)
self.gui1.method1()
self.gui2.method1()
if __name__ == '__main__':
app = wx.App(False)
controller = Controller(app)
app.MainLoop()
但是,当我运行此代码时,GUI不会显示并显示为“冻结”。有人可以帮忙吗?