호버와 클릭 효과 있는 PyQt5 QPushButton 예제Qt/PyQt5 강좌2024. 11. 8. 23:12
Table of Contents
반응형
호버와 클릭 효과 있는 PyQt5 QPushButton 예제입니다.
최초작성 2024. 11. 8
import sys from PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton, QWidget, QVBoxLayout, QLabel from PyQt5.QtCore import Qt from PyQt5.QtGui import QFont class MainWindow(QMainWindow): def __init__(self): super().__init__() self.count = 0 # 카운터 초기화 # 윈도우 설정 self.setWindowTitle("버튼 예제") self.setFixedSize(300, 300) # 메인 위젯과 레이아웃 설정 main_widget = QWidget() self.setCentralWidget(main_widget) layout = QVBoxLayout() main_widget.setLayout(layout) # 레이블 스타일 정의 label_style = """ QLabel { color: #2c3e50; background-color: #ecf0f1; padding: 10px; border-radius: 5px; border: 1px solid #bdc3c7; } """ # 버튼 스타일 정의 button_style = """ QPushButton { background-color: #4a90e2; color: white; border: none; padding: 10px 20px; border-radius: 5px; font-size: 13pt; min-width: 120px; } QPushButton:hover { background-color: #357abd; } QPushButton:pressed { background-color: #2a5d8c; } """ # 숫자 레이블 생성 self.number_label = QLabel("0") self.number_label.setStyleSheet(label_style) self.number_label.setAlignment(Qt.AlignCenter) self.number_label.setFont(QFont("Arial", 20, QFont.Bold)) # 버튼 생성 self.button = QPushButton("클릭하세요") self.button.setStyleSheet(button_style) self.button.clicked.connect(self.button_clicked) # 위젯들을 레이아웃에 추가 layout.addStretch() layout.addWidget(self.number_label) layout.addWidget(self.button, alignment=Qt.AlignCenter) layout.addStretch() def button_clicked(self): self.count += 1 self.number_label.setText(str(self.count)) if __name__ == "__main__": app = QApplication(sys.argv) window = MainWindow() window.show() sys.exit(app.exec_()) |
반응형
'Qt > PyQt5 강좌' 카테고리의 다른 글
fcitx5 사용시 PyQt5에서 한글 입력안되는 문제 해결 방법 (2) | 2024.10.28 |
---|---|
QLabel에서 정수 출력시 자리수 유지하는 PyQt5 예제 코드 (0) | 2024.09.29 |
PyQt5로 구현한 버튼으로 스크롤 가능한 리스트뷰(QListWidget) 예제 (0) | 2024.09.29 |
pyQt5에서 레이아웃을 사용하는 이유 (0) | 2024.09.22 |
pyQt5을 사용하여 만든 간단한 알람 시계 (2) | 2024.09.10 |
시간날때마다 틈틈이 이것저것 해보며 블로그에 글을 남깁니다.
블로그의 문서는 종종 최신 버전으로 업데이트됩니다.
여유 시간이 날때 진행하는 거라 언제 진행될지는 알 수 없습니다.
영화,책, 생각등을 올리는 블로그도 운영하고 있습니다.
https://freewriting2024.tistory.com
제가 쓴 책도 한번 검토해보세요 ^^
@webnautes :: 멈춤보단 천천히라도
그렇게 천천히 걸으면서도 그렇게 빨리 앞으로 나갈 수 있다는 건.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!