반응형 파이썬 GUI1 Day 4. PyQt5 (QCheckBox, QComboBox) QCheckBox는 이름에서도 알 수 있듯이 체크가 가능한 박스가 있는 위젯을 말한다. 가장 간단한 예로 체크가 되어있는 것과 체크가 되어있지 않은 것 이분법적으로 접근할 경우 사용가능한 위젯이다. import sys from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QApplication, QMainWindow, QCheckBox class MainWindow(QMainWindow): def __init__(self): super().__init__() self.setWindowTitle("My App") widget = QCheckBox("This is a checkbox") widget.setCheckState(Qt.Checked) #widget.s.. 2021. 3. 5. 이전 1 다음 반응형