2 Star 0 Fork 0

沈秋斌/chang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myQss2.qss 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
lls132734 提交于 2024-03-25 17:13 . 2024-3-25秋斌的版本
/* 正常状态或者鼠标松开按钮的状态,按钮颜色 */
QPushButton
{
background-color:rgb(240,255,255);
color: rgb(0, 0, 2);
border-style: outset;
border-color: beige;
border-radius: 10px;
}
/* hover按钮悬浮,鼠标悬浮在按钮上的状态,按钮颜色 */
QPushButton:hover
{
background-color:rgb(14, 220, 0);
border-radius: 10px;
color: rgb(0, 0, 0);
}
/* 鼠标按下按钮时的状态,按钮颜色 */
QPushButton:checked
{
background-color:rgb(14, 170, 79);
border-radius: 10px;
color: rgb(255, 255, 0);
}
QLabel {
/* 相当于 font: bold 50px "Snell Roundhand"; */
/*font-size: 25px;*/
font-weight: bold;
font-family: "Snell Roundhand";
/* 文本的颜色 */
color: white;
/* 相当于 background: lightgray url(:/resources/horizontal-add-line.png); */
background-color: lightgray;
background-image: url(:/resources/horizontal-add-line.png);
/* 还能使用渐变 */
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #FFFFFF, stop: 1 #BB000000);
/* 相当于 border: 5px solid gray; */
border-width: 5px;
border-color: gray;
border-style: solid;
/* 边框圆角 */
border-radius: 10px;
padding: 5px;
margin: 10px;
}
QSlider::groove:horizontal {
height: 6px;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 rgb(124, 124, 124), stop: 1.0 rgb(72, 71, 71));
}
QSlider::handle:horizontal {
width: 1px;
background: rgb(0, 160, 230);
margin: -6px 0px -6px 0px;
border-radius: 9px;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shen-qiubin/chang.git
git@gitee.com:shen-qiubin/chang.git
shen-qiubin
chang
chang
master

搜索帮助