Pyqt 주기 함수 만들기1 PyQt(2) 타이머 인터럽트 만들기 import sys from PyQt5.QtWidgets import * from PyQt5.QtCore import QTimer class MyWindow(QMainWindow): def __init__(self): super().__init__() self.setWindowTitle("Test") self.setGeometry(1000, 200, 300, 300) # timer 1 self.timer = QTimer(self) self.timer.start(100) self.timer.timeout.connect(self.timeout_fun) self.time_cnt =0 # timer 2 self.timer2 = QTimer(self) self.timer2.start(500) self.timer2.. 2021. 9. 13. 이전 1 다음