QSS写法

Arya Lv3

前言✨

在写Qt界面的时候通常需要美化,离不开Qss的装饰,qss是类似于css的美化控件的语言。通常使用setStyleSheet方法对控件设置qss格式,我把常用到的一些装饰语句做了一些总结。下面是一些举例,但没办法正常使用

QPushButton

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
QPushButton{
color:#ffffff;
background-color: #ffffff;
border: 1px solid #000000;
border-radius: 6px;
image: url(link)
}
QPushButton:hover{
color:#ffffff;
background-color: #ffffff;
border: 1px solid #000000;
border-radius: 6px;
image: url(link)
}
QPushButton:pressed{
color:#ffffff;
background-color: #ffffff;
border: 1px solid #000000;
border-radius: 6px;
image: url(link)
}
"""

  • 标题: QSS写法
  • 作者: Arya
  • 创建于 : 2024-01-25 18:30:00
  • 更新于 : 2024-03-12 19:26:22
  • 链接: https://aryagala0.github.io/2024/01/25/PyQt/QSS写法/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
 评论
此页目录
QSS写法