当前位置:   article > 正文

QT 设置QLabel设置字体的颜色_qlabel字体颜色

qlabel字体颜色

一是使用setPalette()方法;
二是使用样式表
三是可以使用QStyle;
四是可以在其中使用一些简单的HTML样式。
 
第一种,使用setPalette()方法如下:

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

第二种,使用样式表如下:

  1. QLabel *label = new QLabel(this);
  2. label->setStyleSheet("background-color: rgb(250, 0, 0);font-size:60px;color:blue");
  3. label->setText("Hello World");

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

  1. QLabel *label = new QLabel(tr("Hello Qt!"));

  2. 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

所以尽量使用方法二

让label透明

QLabel *label = new QLabel;
label->setAttribute(Qt::WA_TranslucentBackground);

label->setStyleSheet("background:transparent");

两个都可以

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/312091
推荐阅读
相关标签
  

闽ICP备14008679号