반응형
pyQt5 QDoubleSpinBox 예제
Qt/PyQt5 강좌2024. 8. 11. 08:22pyQt5 QDoubleSpinBox 예제

pyQt5 QDoubleSpinBox 예제입니다.2024. 8. 11  최초작성스핀박스를 클릭하여 값을 조정 후, 버튼을 누르면 스핀박스의 값이 출력됩니다.  import sysfrom PyQt5.QtWidgets import QApplication, QWidget, QGridLayout, QLabel, QDoubleSpinBox, QPushButton, QVBoxLayout, QTextEdit, QHBoxLayoutclass CostSettingWidget(QWidget):    def __init__(self):        super().__init__()        self.initUI()    def initUI(self):        main_layout = QHBoxLayout()    ..

반응형
image