Как закрыть QMessageBox и его родительский диалог в Python

Как я могу сделать, чтобы закрыть всплывающее диалоговое окно и его QMessageBox.information когда ok кнопка нажата

Я получил этот код отсюда

Я использую его как всплывающее диалоговое окно в моем модуле. Диалоговое окно открывает другое QMessageBox.information со своим стандартом ok кнопка

http://i60.tinypic.com/28kocih.jpg

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *

import serial
from serial.serialutil import SerialException
from serialutils import full_port_name, enumerate_serial_ports


class ListPortsDialog(QDialog):
    def __init__(self, parent=None):
        super(ListPortsDialog, self).__init__(parent)
        self.setWindowTitle('List of serial ports')

        self.ports_list = QListWidget()
        self.tryopen_button = QPushButton('Try to open')
        self.connect(self.tryopen_button, SIGNAL('clicked()'),
        self.on_tryopen)

        layout = QVBoxLayout()
        layout.addWidget(self.ports_list)
        layout.addWidget(self.tryopen_button)
        self.setLayout(layout)

        self.fill_ports_list()

   def on_tryopen(self):
        cur_item = self.ports_list.currentItem()
        if cur_item is not None:
            fullname = full_port_name(str(cur_item.text()))
            try:
                ser = serial.Serial(fullname, 38400)
                ser.close()
                QMessageBox.information(self, 'Success',
                    'Opened %s successfully' % cur_item.text())
            except SerialException, e:
                QMessageBox.critical(self, 'Failure',
                    'Failed to open %s:\n%s' % (
                    cur_item.text(), e))

    def fill_ports_list(self):
        for portname in enumerate_serial_ports():
            self.ports_list.addItem(portname)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    form = ListPortsDialog()
    form.show()
    app.exec_()

я хотел закрыть как окно 3, так и окно 2 при нажатии кнопки ОК

1 ответ

Решение

Так как он использует QDialog после QMessageBox.information(self, 'Success', 'Opened %s successfully' % cur_item.text()) можно просто сказать self.accept(), Это должно закрыть 2 и 3 окна.

Другие вопросы по тегам