PyQt,MessageBox应用退出后,为什么?
问题描述
我有一个Systray类和一个弹出MessageBox的Action。 当我在MessageBox中单击确定时,应用程序退出...为什么?我不想放弃。如何修复它?
import sys
from PyQt4 import QtGui, QtCore
class SystemTrayIcon(QtGui.QSystemTrayIcon):
def __init__(self, icon, parent=None):
QtGui.QSystemTrayIcon.__init__(self, icon, parent)
menu = QtGui.QMenu(parent)
exitAction = menu.addAction("Exit")
helloAction = menu.addAction("Hello World")
self.setContextMenu(menu)
QtCore.QObject.connect(exitAction, QtCore.SIGNAL('triggered()'), self.exit)
QtCore.QObject.connect(helloAction, QtCore.SIGNAL('triggered()'), self.hello)
def exit(self):
QtCore.QCoreApplication.exit()
def hello(self):
msg = QtGui.QMessageBox.information(self.parent(), "Hello", "Hello World")
def main():
app = QtGui.QApplication(sys.argv)
w = QtGui.QWidget()
trayIcon = SystemTrayIcon(QtGui.QIcon("qtLogo.png"), w)
trayIcon.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
解决方案
解决了。
需要设置app.setQuitOnLastWindowClosed(False)。所以:
app = QtGui.QApplication(sys.argv)
app.setQuitOnLastWindowClosed(False)
这将阻止它在窗口关闭时退出。
相关文章