Pyqt关闭窗口运行但不起作用

时间:2013-11-28 15:56:34

标签: python pyqt

我有一个功能,负责关闭我的应用程序。但不知怎的,..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

1 个答案:

答案 0 :(得分:0)

app=QtGui.QApplication(sys.argv)
app.exit()

解决了这个问题