1。表头设置:这种写法是错误的
QHeaderView
{
/*****字体****/
color: white;
//设置格子背景色
background-color: rgb(36, 45, 42);/*设置表头空白区域背景色*/
}
1。表头设置:正确写法
QHeaderView::section
{
/*****字体****/
color: white;
//设置格子背景色
background: rgb(36, 45, 42)
}
2。设置表格
QTableView {
color: white; /*表格内文字颜色*/
gridline-color: black; /*表格内框颜色*/
background-color: rgb(8, 20, 37); /*表格内背景色*/
alternate-background-color: rgb(64, 64, 64);
selection-color: white; /*选中区域的文字颜色*/
selection-background-color: rgb(77, 77, 77); /*选中区域的背景色*/
border: 2px #081325;
border-radius: 0px;
}