Как я узнаю, что другое окно закрыто? - PullRequest
0 голосов
/ 28 мая 2018

Итак, мне нужно обновить ComboBox в MainWindow после закрытия другого окна.здесь функция кнопки для открытия другого окна

import AnotherWindow as cl

       def inputclass(self):
                self.InputClass = cl.InputWindow()
                self.InputClass.show()
                self.boxclass()

       def boxclass(self):
            self.BoxClass.clear()
            with open('data/ClassSuara.csv','rb') as f :
                reader = csv.reader(f)
                listsuara = list(reader)
            for a in listsuara:
                cek = str(a)
                b = cek[2:-2]
                self.BoxClass.addItem(b)

здесь AnotherWindow Window

class InputWindow(QtGui.QMainWindow, gui.Ui_KelasSuara):
    def __init__(self):
        QtGui.QMainWindow.__init__(self)
        gui.Ui_KelasSuara.__init__(self)
        self.setupUi(self)
        self.BtnTambah.clicked.connect(self.Tambahkan)

    def Tambahkan(self):
        self.listClass.clear()
        ClassSuara = open('data/ClassSuara.csv','a')
        ClassSuara.write(self.lineClass.text()+'\n')
        ClassSuara.close()

Но после закрытия AnotherWindow self.boxclass() не будет выполняться

1 Ответ

0 голосов
/ 28 мая 2018

Nvm, решил, изменив AnotherWindow на QDialog, и изменив self.InputClass.show() на self.InputClass.exec_()

...