반응형
프로그레스 바(QProgressBar)를 제어하는 간단한 PyQt5 예제
Qt/PyQt5 강좌2024. 8. 31. 06:01프로그레스 바(QProgressBar)를 제어하는 간단한 PyQt5 예제

프로그레스 바(QProgressBar)를 제어하는 간단한 PyQt5 예제입니다. 2024. 8. 31 최초작성시작 버튼을 클릭하면 프로그레스 바가 진행되면서 파란색 영역이 채워지다가 정지 버튼을 클릭하면 멈춥니다. 초기화 버튼을 클릭하면 프로그레스 바가 초기화됩니다.100% 채우기 버튼을 클릭하면 프로그레스 바가 꽉차게 됩니다.  전체 코드입니다. import sysfrom PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QProgressBar, QVBoxLayoutfrom PyQt5.QtCore import QTimer, QObject, pyqtSignalclass ProgressBarController(QObject):    progress_c..

반응형
image