QTableWidget CSS样式
QTableWidget
{
border:1px solid rgb(170, 170, 127);
border-radius:3px;
}
QScrollBar::handle
{
background:rgb(255, 196, 147);
border:1px solid rgb(170, 170, 127);
border-radius:5px;
}
表头样式
querystyle = "QHeaderView::section { \
/*rgb(255, 196, 147)*/\
color:rgb(255, 255, 255);\
border:1px solid rgb(170, 170, 127);\
border-bottom:1px solid #E0DDDC;\
border-radius:3.2px;\
font: 15pt \"楷体\";\
height:30px;}"
self.tableWidget_query.horizontalHeader().setStyleSheet(querystyle)
本文来自博客园,作者:{archer},转载请注明原文链接:https://www.cnblogs.com/archer-mowei/p/15709580.html