Qtablewidget 样式
时间: 2023-08-07 20:03:29 浏览: 218
QTableWidget是Qt中的一个表格控件,可以通过QSS样式来设置其外观。以下是一些常用的QTableWidget QSS样式:
1. 设置表格边框和背景颜色:
QTableWidget {
border: 1px solid gray;
background-color: white;
}
2. 设置表头的背景颜色和字体:
QHeaderView::section {
background-color: gray;
color: white;
font-size: 14px;
}
3. 设置表格行的背景颜色和字体:
QTableWidget::item {
background-color: lightgray;
color: black;
font-size: 12px;
}
4. 设置选中行的背景颜色:
QTableWidget::item:selected {
background-color: blue;
color: white;
}
5. 设置表格的边框样式和宽度:
QTableWidget {
border-style: solid;
border-width: 1px;
border-color: gray;
}
6. 设置表格的行高和列宽:
QTableWidget::item {
height: 30px;
width: 100px;
}
以上是一些常用的QTableWidget QSS样式,可以根据需要进行调整和修改。
阅读全文