반응형
호버와 클릭 효과 있는 PyQt5 QPushButton 예제
Qt/PyQt5 강좌2024. 11. 8. 23:12호버와 클릭 효과 있는 PyQt5 QPushButton 예제

호버와 클릭 효과 있는 PyQt5 QPushButton 예제입니다.최초작성 2024. 11. 8import sysfrom PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton, QWidget, QVBoxLayout, QLabelfrom PyQt5.QtCore import Qtfrom PyQt5.QtGui import QFontclass MainWindow(QMainWindow):    def __init__(self):        super().__init__()        self.count = 0  # 카운터 초기화                # 윈도우 설정        self.setWindowTitle("버튼 예제")        sel..

반응형
image