QTableWidget{alternate-background-color:blue;background:yellow;} 效果 注意!请先启用交替背景色属性 ui->tableWidget->setAlternatingRowColors(true); 2. background 不用多说,就是背景属性,跟下面几个差不多,可以相当于background-color, background-image, background-repeat, 或者 background-position。 支持...
border-color:边框颜色 border-style:边框风格 border-width:边框宽度 border-image:边框图片 border-radius:元素的外边框圆角border-top-left-radiusborder-top-right-radiusborder-bottom-right-radiusborder-bottom-left-radius 4.7 颜色样式 alternate-background-color:交替行颜色 gridline-color:QTableView 中网格线的...
"QTableWidget{gridline-color:#2aaee4; color:#888; border:none; alternate-background-color:lightblue;}"//样式表 04 在样式表中使用alternate-background-color属性来控制间隔行的颜色。设置的是偶数行的颜色。如果想设置奇数行的颜色可以通过设置表格的背景颜色来实现。
如果交替改变行颜色(alternating row colors)被启用的话,那么交替的颜色(alternating colors)可使用alternate-background-color 属性来进行样式设置。 选中的项目(item)的颜色和背景分别是使用selection- color 和selection-background-color 来进行样式设置的。 QTableView 中的边角(corner)部件是一個 QAbstractButton ,可...
border-color:边框颜色 border-style:边框风格 border-width:边框宽度 border-image:边框图片 border-radius:元素的外边框圆角 border-top-left-radius border-top-right-radius border-bottom-right-radius border-bottom-left-radius 颜色样式 alternate-background-color:交替行颜色 ...
支持盒状模型。如果交替改变行颜色(alternating row colors)被启用的话,那么交替的颜色(alternating colors)可使用alternate-background-color属性来进行样式设置。 选中的项目(item)的颜色和背景分别是使用selection-color和selection-background-color来进行样式设置的。
警告:不要把该函数和Qt Style Sheets一起结合使用。当使用style sheets时,widget的调色板可以使用”color”,”background-color”,”selection-color”,”selection-background-color”,”alternate-background-color”来自定义 相关函数 const QPalette &palette() const ...
/*包含选择器*/QCalendarWidget QTableView{alternate-background-color:rgba(255,255,255,0);font:14pt"Hei";} 如果想在一个控件不同状态下改变他的样式,则需要用上选择器,选择器的使用方法是在控件类或名称后面加上冒号连着状态。 /*子控件选择器*/QAbstractItemView:disabled{background-color:rgba(255,255,...
"alternate-background-color: rgb(141, 163, 215);}" ); this->setSelectionBehavior(QAbstractItemView::SelectRows); this->horizontalHeader()->setStretchLastSection(true); this->horizontalHeader()->setHighlightSections(false); this->verticalHeader()->setVisible(false); ...
QLineEdit { background: yellow } QCheckBox { color: red } 对于这种定制,样式表比QPalette更强大。例如,要获取一个红色的按钮,可以设置QPushButton的QPalette::Button角色为红色。然而,这并不保证对所有的样式有效,因为样式的构造者会被不同平台的原则和本地的主题引擎所限制。 样式表可以实现那些很难或是不可...