使用菜单按钮关闭pyqt中的MainWindow

时间:2017-08-02 08:14:09

标签: python pyqt

我在python中有这样的东西

self.dlg = Mainwindow()

self.dlg.actionExit.triggered.connect(self.close)

def close(self):
    QCoreApplication.quit()

但结果是它关闭了整个软件..我只是想通过使用actionExit按钮关闭主窗口..我该怎么做?

1 个答案:

答案 0 :(得分:2)

只需在close个实例上调用MainWindow;

self.dlg.actionExit.triggered.connect(self.dlg.close)