Mam problem z QThreads w python. Chcę zmienić kolor tła etykiety. Ale Moja awaria aplikacji podczas uruchamiania. „QThread: Zniszczony podczas gdy wątek jest nadal działa”QThread: Destroyed while thread nadal działa
class MainWindow(QMainWindow):
def __init__(self):
QMainWindow.__init__(self)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
statusTh = statusThread(self)
self.connect(statusTh, SIGNAL('setStatus'), self.st, Qt.QueuedConnection)
statusTh.start()
def st(self):
if self.status == 'ON':
self.ui.label.setStyleSheet('background-color:green')
else:
self.ui.label.setStyleSheet('background-color:red')
class statusThread(QThread):
def __init__(self, mw):
super(statusThread, self).__init__()
def run(self):
while True:
time.sleep(1)
self.emit(SIGNAL('setStatus'))
if __name__ == "__main__":
app = QApplication(sys.argv)
main_window = MainWindow()
main_window.show()
sys.exit(app.exec_())
Rozwiązanie Qt stylu, przypisać okna głównego jako 'rodzica statusTh', a mianowicie,' super (statusThread, self) .__ init __ (mw) '. – nymk
Bardzo dużo. Działa teraz –
Tylko dla informacji, jest to w zasadzie to samo: w tym przypadku rodzic zachowa odwołanie do instancji wątku i dlatego nie będzie zbierane śmieci. – rainer