상태바만들기1 PyQt5 로 상태바 만들기 상태바를 가진 간단한 PyQt5 애플리케이션의 예제 코드입니다.import sysfrom PyQt5.QtWidgets import QApplication, QMainWindow, QLabelclass Example(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): self.statusBar().showMessage('준비') self.setGeometry(300, 300, 250, 150) self.setWindowTitle('상태바 예제') self.label = QLabel("메인 윈도우", self).. 2024. 5. 2. 이전 1 다음