阅读量:0
在 PyQt5 中,可以使用 QSS (Qt Style Sheets) 来设置 QPushButton 的样式
from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QPushButton app = QApplication([]) window = QWidget() layout = QVBoxLayout(window) # 创建一个 QPushButton 实例 button = QPushButton('Click me!') # 设置按钮的样式 button.setStyleSheet(""" QPushButton { background-color: #4CAF50; color: white; font-size: 16px; border: none; padding: 10px 20px; } QPushButton:hover { background-color: #45a049; } QPushButton:pressed { background-color: #3e8e41; } """) layout.addWidget(button) window.setLayout(layout) window.show() app.exec_()
在这个示例中,我们首先导入了所需的模块并创建了一个简单的窗口。然后,我们创建了一个 QPushButton 实例,并使用 setStyleSheet
方法设置了按钮的样式。我们为按钮定义了背景颜色、字体颜色、字体大小等属性,并设置了鼠标悬停和按下时的背景颜色。最后,我们将按钮添加到布局中并显示窗口。
运行此代码将显示一个带有自定义样式的 QPushButton。你可以根据需要修改 QSS 代码以更改按钮的外观。