QTableWidget表头样式

Posted 大陈1108

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QTableWidget表头样式相关的知识,希望对你有一定的参考价值。

转载请注明出处:http://www.cnblogs.com/dachen408/p/7742680.html

QTableView
{
	background-color: rgba(255, 255, 255, 0); 
	alternate-background-color:#e3edf9;
	font:14px "微软雅黑";
	color:#677483;
	gridline-color: #ccddf0;
}

QTableView::item
{	
	font:14px "微软雅黑";
	color:#677483;
	gridline-color: #ccddf0; 
}

QTableView::item:selected
{	
	color:#677483;
}

QHeaderView::section {	
	color: black;
	font:bold 14px "微软雅黑";
	text-align:center;
	height:32px;
	background-color: #d1dff0;
	border:1px solid #8faac9;
	border-left:none;
}

// border-left:none;防止中间表头的border重叠
QHeaderView::section:first 
{
	border-left:1px solid #8faac9;
}

  

以上是关于QTableWidget表头样式的主要内容,如果未能解决你的问题,请参考以下文章

QTableWidget具体解释(样式右键菜单表头塌陷多选等)

QTableWidget具体解释(样式右键菜单表头塌陷多选等) (非代理)

QTableWidget CSS样式

qt QTableView/QTableWidget样式设置

请教个QTableWidget表头设置问题

请教个QTableWidget表头设置问题