QLabel设置字体颜色
Posted sggggr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QLabel设置字体颜色相关的知识,希望对你有一定的参考价值。
(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设置字体颜色的主要内容,如果未能解决你的问题,请参考以下文章