Python QTableWidget 带有样式表的索引和行的颜色

Python QTableWidget color of index and row with stylesheet

是否可以通过 QT Designer 中的样式表更改 Qtablewidget 中行和索引的颜色???

    background-image: url(:/newPrefix/buttoooo.png);
QTableWidget{background-color: #e49e00;font: 75 12pt "Rockwell"}
QTableWidget:item:hover{ background-color: #fee103 }
QTableWidget:item:pressed{ background-color: #ff0000 }
QHeaderView{
Background-color:#e49e00;border-radius:15px;}

经过长时间的搜索,我找到了样式表的解决方案:

´´´

QHeaderView::section:horizontal
{
    border-top: 0px solid #fffff8;
font: 75 14pt "MS Shell Dlg 2";
}

QHeaderView::section:vertical
{
    border-left: 0px solid #fffff8;
font: 75 14pt "MS Shell Dlg 2";
}

´´´