我目前有一个看起来像这样的QTabWidget.QtabWidget里面有一个QtableView

我想知道如何更改QtabWidget的背景颜色。我想维护我现有的QtabWidget样式表,只在红色箭头标记的区域中添加蓝色背景。简而言之,我想在标签下添加背景色。我目前有一个样式表,看起来像这样

QTAB

QTabWidget
{
  /*   min-width:5000em;*/
}


 QTabWidget::tab-bar
{
     left: 5px; /* move to the right by 5px */
 }


 QTabWidget::pane
 {
     border-top: 1px solid gray;
     border-left: 1px solid gray;
     border-right: 1px solid gray;
     border-bottom: 1px solid gray;
 }

 QTabBar::tab
 {
     background-color: rgb(166, 166, 166);
     min-width: 70px;

     padding-top : 6px;
     padding-bottom : 8px;
     color: rgb(255, 255, 255);
     font: 10pt "Arial";
 }

 QTabBar::tab:selected, QTabBar::tab:hover
{
     background-color: rgb(127, 127, 127);
 }

 QTabBar::tab:selected
{
     /*border-color: #9B9B9B;*/
 }

 QTabBar::tab:!selected
 {
     margin-top: 2px; /* make non-selected tabs look smaller */

 }

关于如何在标签下添加背景色的任何建议将不胜感激。谢谢。

最佳答案

您可以在构造函数中使用stStyleSheet:

ui->YOURWIDGET->setStyleSheet("background-color: YOURCOLOR");

关于c++ - 更改QTabWidget的背景颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23709091/

10-11 23:05