我有一个功能,负责关闭我的应用程序。但不知怎的,..quit()并没有关闭窗口。它并没有陷入无限循环或类似的东西。
def onExit():
QtCore.QCoreApplication.instance().quit
sys.exit(app)
shutdown = 1
#set the shutdown var to the child process
parent.send(shutdown)
logProc.join()
return
答案 0 :(得分:0)
app=QtGui.QApplication(sys.argv)
app.exit()
解决了这个问题