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{alternate-background-color:blue;background:yellow;} 效果 注意!请先启用交替背景色属性 ui->tableWidget->setAlternatingRowColors(true); 2. background 不用多说,就是背景属性,跟下面几个差不多,可以相当于background-color, background-image, background-repeat, 或者 background-position。 支持...
alternate-background-color: rgba(248, 250, 252, 255); border: 1px solid rgba(212, 212, 212, 255); } QTableWidget::item::selected { background-color: transparent; color : rgba(46, 101, 210, 255); } // QTableWidget的表头 QHeaderView::section { padding-left: 2px; margin: 0px; back...
alternate-background-color主要用于 QAbstractItemView子类,用来设置视图文本的交替背景色(需要设置视图的交替背景色属性)。例如: QTreeView { alternate-background-color: blue; background: yellow; } background Background 设置窗体背景的简写,包括设置background-color, background-image, background-repeat, backgro...
alternate-background-color: rgba(248,250,252,255); border: 1px solid rgba(212,212,212,255); } QTableWidget::item::selected { background-color: transparent; color : rgba(46,101,210,255); }//QTableWidget的表头QHeaderView::section {
/*简写·这个在阅读代码中经常出现,要认真的研究*/QWidget{background:#000url(..) repeat fixed left top; } 4.6 边框样式 border:边框样式 border-top border-top-color border-top-style border-top-width border-right border-right-color border-right-style ...
alternate-background-color:yellow; } QListView{ show-decoration-selected:1;/* make the selection span the entire width of the view */ } /* 此处QListView::item:alternate覆盖会alternate-background-color: yellow属性*/ QListView::item:alternate{ ...
color:white; //字体颜色 } QPushButton:hover { background-color: rgb(0,130,150); //伪状态经过时背景色 border:2px solid #5F92B2; //边界和边界颜色 border-radius:5px; //边界圆滑 color:white; //字体为白色 } QPushButton:hover:pressed ...
alternate-background-color: yellow; } 当鼠标划过 item 时,如果要提供一个特殊的背景色,可以使用::item辅助控制,例如: QTreeView{ show-decoration-selected:1; }QTreeView::item{border:1px solid #d9d9d9; border-top-color: transparent; border-bottom-color: transparent; ...
QTreeView 作为一个树形控件,我们经常用到,只要对样式熟悉,可以做出特别漂亮的特效。 自定义 QTreeView 交替行的背景色可以使用下面样式代码来定义: QTreeView { alternate-background-color: yellow; }123 当鼠标划过 item 时,如果要提供一个特殊的背景色,可以使用::item辅助控制,例如: ...