Qt/PyQt5 강좌2023. 10. 22. 05:36PyQt5 예제 - QProgressDialog
간단한 QProgressDialog 예제 입니다. 2022. 8. 14 최초작성 실행하면 두 개의 버튼이 보입니다. “QProgressDialog 보여주기”를 클릭하면 QProgressDialog를 보여줍니다. “QProgressDialog 숨기기”를 클릭하면 QProgressDialog가 사라집니다. 전체 소스 코드입니다. import sys from PyQt5.QtWidgets import QHBoxLayout, QPushButton, QProgressDialog, QDialog, QApplication from PyQt5.QtCore import Qt class MainDialog(QDialog): def __init__(self): super().__init__() horizontal_layout..