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

QLabel设置字体颜色

时间:2020-04-10 10:41:18      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:hello   ref   推荐   label   href   white   设置   tail   set   

(1)使用样式表(推荐)

label->setStyleSheet("QLabel{color:rgba(66, 133, 245, 255);}");

(2)使用QPalette

QLabel *label = new QLabel("Hello Qt!");  
QPalette palette;  
palette.setColor(QPalette::WindowText, Qt::white);
label->setPalette(palette);

转载自:

https://blog.csdn.net/weixin_43742643/article/details/100171293

QLabel设置字体颜色

标签:hello   ref   推荐   label   href   white   设置   tail   set   

原文地址:https://www.cnblogs.com/sggggr/p/12671651.html

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