PyQt/QPushButton/NormalStyle.py

114 lines
2.9 KiB
Python
Raw Normal View History

2018-11-01 00:10:21 +08:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2021-07-13 14:52:26 +08:00
"""
2018-11-01 00:10:21 +08:00
Created on 2018年1月29日
2021-07-13 14:52:26 +08:00
@author: Irony
@site: https://pyqt.site , https://github.com/PyQt5
2018-11-01 00:10:21 +08:00
@email: 892768447@qq.com
2018-12-31 14:49:29 +08:00
@file: NormalStyle
2018-11-01 00:10:21 +08:00
@description:
2021-07-13 14:52:26 +08:00
"""
2018-11-01 00:10:21 +08:00
2021-07-13 14:52:26 +08:00
import sys
2018-11-01 00:10:21 +08:00
2021-07-13 14:52:26 +08:00
try:
from PyQt5.QtWidgets import QWidget, QHBoxLayout, QPushButton, QApplication
except ImportError:
from PySide2.QtWidgets import QWidget, QHBoxLayout, QPushButton, QApplication
2018-11-01 00:10:21 +08:00
2021-07-13 14:52:26 +08:00
StyleSheet = """
2018-11-01 00:10:21 +08:00
/*这里是通用设置所有按钮都有效不过后面的可以覆盖这个*/
QPushButton {
border: none; /*去掉边框*/
}
/*
QPushButton#xxx
或者
#xx
都表示通过设置的objectName来指定
*/
QPushButton#RedButton {
background-color: #f44336; /*背景颜色*/
}
#RedButton:hover {
background-color: #e57373; /*鼠标悬停时背景颜色*/
}
/*注意pressed一定要放在hover的后面否则没有效果*/
#RedButton:pressed {
background-color: #ffcdd2; /*鼠标按下不放时背景颜色*/
}
#GreenButton {
background-color: #4caf50;
border-radius: 5px; /*圆角*/
}
#GreenButton:hover {
background-color: #81c784;
}
#GreenButton:pressed {
background-color: #c8e6c9;
}
#BlueButton {
background-color: #2196f3;
/*限制最小最大尺寸*/
min-width: 96px;
max-width: 96px;
min-height: 96px;
max-height: 96px;
border-radius: 48px; /*圆形*/
}
#BlueButton:hover {
background-color: #64b5f6;
}
#BlueButton:pressed {
background-color: #bbdefb;
}
#OrangeButton {
max-height: 48px;
border-top-right-radius: 20px; /*右上角圆角*/
border-bottom-left-radius: 20px; /*左下角圆角*/
background-color: #ff9800;
}
#OrangeButton:hover {
background-color: #ffb74d;
}
#OrangeButton:pressed {
background-color: #ffe0b2;
}
/*根据文字内容来区分按钮,同理还可以根据其它属性来区分*/
QPushButton[text="purple button"] {
color: white; /*文字颜色*/
background-color: #9c27b0;
}
2021-07-13 14:52:26 +08:00
"""
2018-11-01 00:10:21 +08:00
class Window(QWidget):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
layout = QHBoxLayout(self)
layout.addWidget(QPushButton("red button", self,
objectName="RedButton", minimumHeight=48))
layout.addWidget(QPushButton("green button", self,
objectName="GreenButton", minimumHeight=48))
layout.addWidget(QPushButton("blue button", self,
objectName="BlueButton", minimumHeight=48))
layout.addWidget(QPushButton("orange button", self,
objectName="OrangeButton", minimumHeight=48))
layout.addWidget(QPushButton("purple button", self,
objectName="PurpleButton", minimumHeight=48))
if __name__ == "__main__":
app = QApplication(sys.argv)
app.setStyleSheet(StyleSheet)
w = Window()
w.show()
sys.exit(app.exec_())