其他分享
首页 > 其他分享> > Qt QTabWidget stylesheet 的一个例子

Qt QTabWidget stylesheet 的一个例子

作者:互联网

https://stackoverflow.com/questions/38369015/customuzing-qtabwidget-with-style-sheets

QTabWidget::pane {
  border: 1px solid lightgray;
  top:-1px; 
  background: rgb(245, 245, 245);; 
} 

QTabBar::tab {
  background: rgb(230, 230, 230); 
  border: 1px solid lightgray; 
  padding: 15px;
} 

QTabBar::tab:selected { 
  background: rgb(245, 245, 245); 
  margin-bottom: -1px; 
}

 

标签:Qt,1px,QTabBar,245,stylesheet,rgb,background,QTabWidget,230
来源: https://www.cnblogs.com/liujx2019/p/14143371.html