基于条目控件的样式表
最后更新于:2022-04-02 02:11:29
[TOC]
## 概述
1. 表格整体的前景色、背景色
```
color: darkblue;
background-color: cyan;
```
2. 双色交替行的设置
```
tableWidget->setAlternatingRowColors( true ); //这是C++代码
// style
alternate-background-color: skyblue; // 奇数
background-color: cyan; // 偶数
```
3. 高亮选中条目的颜色设置
```
selection-color: red;
selection-background-color: yellow;
```
4. 表格的网格线颜色设置
```
gridline-color: darkgreen;
```
5. 表头的颜色设置
```
QHeaderView{
color: darkblue;
background-color: cyan;
}
```
6. 角按钮的颜色设置
![](https://qtguide.ustclug.org/images/ch08/ch08-04-09.png)
```
QTableCornerButton::section {
background: red;
border: 2px outset red;
}
```
7. 配置所有条目的颜色
```
QTableWidget::item{
color: darkblue;
background-color: cyan;
}
```
8. 配置滚动条的颜色
```
QScrollBar{
color: yellow;
background-color: green;
}
```
9. 加与不加 类名大括号 的区别
```
color: red;
background-color: yellow;
```
```
QTableWidget{
color: red;
background-color: yellow;
}
```
';