在 PyQt5 中,QPushButton 是一個用于創建按鈕的類
pip install pyqt5
custom_button.py
的文件,并添加以下代碼:import sys
from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QPushButton
class CustomButton(QPushButton):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.setStyleSheet("""
QPushButton {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
}
QPushButton:hover {
background-color: #45a049;
}
QPushButton:pressed {
background-color: #3e8e41;
}
""")
class MainWindow(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
layout = QVBoxLayout()
button1 = CustomButton("Button 1")
button2 = CustomButton("Button 2")
layout.addWidget(button1)
layout.addWidget(button2)
self.setLayout(layout)
if __name__ == "__main__":
app = QApplication(sys.argv)
main_window = MainWindow()
main_window.show()
sys.exit(app.exec_())
在這個示例中,我們創建了一個名為 CustomButton
的自定義按鈕類,它繼承自 QPushButton
。我們使用 setStyleSheet()
方法設置了按鈕的樣式。然后,在 MainWindow
類中,我們創建了兩個 CustomButton
實例,并將它們添加到布局中。
運行此代碼,你將看到一個包含兩個自定義按鈕的窗口。這些按鈕具有綠色背景、白色文本和圓角邊框。當鼠標懸停在按鈕上時,背景顏色會變暗,當按鈕被按下時,背景顏色會進一步變暗。