python -- pyQt5中 样式设置(边框、按钮、CSS 颜色代码)
在PyQt5中,可以通过不同的方法设置控件的样式,包括边框、按钮和CSS颜色代码。以下是一些示例代码:
from PyQt5.QtWidgets import QApplication, QPushButton, QWidget, QVBoxLayout, QFrame
from PyQt5.QtGui import QColor
from PyQt5.QtCore import Qt
import sys
class StyleExample(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
# 创建一个按钮
button = QPushButton('按钮')
# 设置按钮边框
button.setStyleSheet("QPushButton {"
"border: 2px solid red;" # 边框为红色
"}"
"QPushButton:hover {" # 鼠标悬停时边框更宽
"border: 4px solid blue;"
"}")
# 设置按钮背景色和文字颜色
button.setStyleSheet(button.styleSheet() + "QPushButton {"
"background-color: rgb(160, 160, 160);" # 背景色为灰色
"color: rgb(255, 255, 255);" # 文字颜色为白色
"}")
# 使用CSS设置按钮背景色和边框
button.setStyleSheet(button.styleSheet() + "QPushButton {"
"background-color: #00FF00;" # 绿色背景
"border: 2px solid #0000FF;" # 蓝色边框
"}")
# 创建一个边框
frame = QFrame(self)
frame.setStyleSheet("QFrame {"
"border: 2px solid black;" # 边框为黑色
"background-color: #FF0000;" # 边框背景色为红色
"}")
frame.setFrameShape(QFrame.StyledPanel)
# 布局
vbox = QVBoxLayout()
vbox.addWidget(button)
vbox.addWidget(frame)
self.setLayout(vbox)
self.setGeometry(300, 300, 300, 200)
self.setWindowTitle('样式设置示例')
self.show()
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = StyleExample()
sys.exit(app.exec_())
在这个例子中,我们创建了一个StyleExample
类,它继承自QWidget
。在initUI
方法中,我们创建了一个按钮和一个边框,并通过setStyleSheet
方法设置了它们的样式。我们使用CSS语法来定义样式,如边框、背景颜色等。我们也演示了如何使用CSS颜色代码(如#00FF00
表示绿色)和RGB值(如rgb(160, 160, 160)
表示灰色)来设置颜色。
评论已关闭