码迷,mamicode.com
首页 > 其他好文 > 详细

QTabWidget and QTabBar.的文字的颜色设置,三种方法

时间:2016-07-21 00:37:56      阅读:766      评论:0      收藏:0      [点我收藏+]

标签:

see the code after subclassing
TabWidget::TabWidget(QWidget *parent): QTabWidget(parent),mousePressFlag(false)
{
bar=tabBar();
QPalette palette;
bar->installEventFilter(this);

palette.setColor(QPalette::Active,QPalette::Button ,QColor(0,0,255)); 
bar->setPalette(palette);
bar->setAutoFillBackground(true);
};

 

  1. TabWidget::TabWidget(QWidget *parent) : QTabWidget(parent){
  2. QPalette pal = tabBar()->palette;
  3. pal.setColor(QPalette::Window,QColor(0,0,255));
  4. tabBar()->setPalette(pal);
  5. }

tabWidget->setPalette(QPalette(Qt::red));

 

http://www.qtcentre.org/threads/2986-How-to-change-color-of-Tab-in-QTabWidget

QTabWidget and QTabBar.的文字的颜色设置,三种方法

标签:

原文地址:http://www.cnblogs.com/findumars/p/5689990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!