我是靠谱客的博主 认真小笼包,最近开发中收集的这篇文章主要介绍QT5如何设置QLabel中字体的颜色,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

修改了wd的文章:


如何使用Qt5,设置QLabel中字体的颜色。
大致有几种做法:
一是使用setPalette()方法;
二是使用样式表;
三是可以使用QStyle;
四是可以在其中使用一些简单的HTML样式。
 
第一种,使用setPalette()方法如下:

QPalette pe;
	pe.setColor(QPalette::WindowText, Qt::red);
	QLabel *label = new QLabel(this);
	label->setPalette(pe);
	label->setText("Hello World");

第二种,使用样式表如下:
  QLabel *label = new QLabel(this);
    label->setStyleSheet("background-color: rgb(250, 0, 0);font-size:60px;color:blue");
    label->setText("Hello World");

第三种,使用QStyle


第四种,使用一些简单的HTML格式:

QLabel *label = new QLabel(tr("Hello Qt!"));
QLabel *label = new QLabel("<h2><i>Hello</i><font color=red>Qt!</font></h2>");



Warning: Some styles do not use the palette for all drawing, for instance, if they make use of native theme engines. This is the case for both the Windows XP, Windows Vista, and the Mac OS X styles.
Style sheets let you perform all kinds of customizations that are difficult or impossible to perform using QPalette alone

所以尽量使用方法二

转载于:https://www.cnblogs.com/lgh1992314/p/5834818.html

最后

以上就是认真小笼包为你收集整理的QT5如何设置QLabel中字体的颜色的全部内容,希望文章能够帮你解决QT5如何设置QLabel中字体的颜色所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(78)

评论列表共有 0 条评论

立即
投稿
返回
顶部