205

如何设置文本的颜色和背景QLabel

4

6 回答 6

306

最好和推荐的方法是使用 Qt 样式表。文档:Qt 5 样式表Qt 6 样式表

要更改 a 的文本颜色和背景颜色,QLabel我会这样做:

QLabel* pLabel = new QLabel;
pLabel->setStyleSheet("QLabel { background-color : red; color : blue; }");

QPalette您也可以避免使用 Qt 样式表并更改QLabel.

正如 Qt 文档所述:

使用 QPalette 并不能保证适用于所有样式,因为样式作者受到不同平台指南和本机主题引擎的限制。

但你可以做这样的事情:

 QPalette palette = ui->pLabel->palette();
 palette.setColor(ui->pLabel->backgroundRole(), Qt::yellow);
 palette.setColor(ui->pLabel->foregroundRole(), Qt::yellow);
 ui->pLabel->setPalette(palette);

但正如我所说,我强烈建议不要使用调色板并使用 Qt 样式表。

于 2010-05-03T06:07:37.397 回答
55

您可以使用 QPalette,但是您必须设置setAutoFillBackground(true);启用背景颜色

QPalette sample_palette;
sample_palette.setColor(QPalette::Window, Qt::white);
sample_palette.setColor(QPalette::WindowText, Qt::blue);

sample_label->setAutoFillBackground(true);
sample_label->setPalette(sample_palette);
sample_label->setText("What ever text");

它在 Windows 和 Ubuntu 上运行良好,我没有玩过任何其他操作系统。

注意:请参阅QPalette,颜色角色部分了解更多详细信息

于 2012-07-19T23:41:26.733 回答
25

我添加了这个答案,因为我认为它对任何人都有用。

我进入了为我的绘画应用程序中的颜色显示标签设置RGBA颜色(即,具有透明度的 Alpha 值的 RGB 颜色)的问题。

当我遇到第一个答案时,我无法设置 RGBA 颜色。我也尝试过类似的东西:

myLabel.setStyleSheet("QLabel { background-color : %s"%color.name())

其中color是 RGBA 颜色。

因此,我的肮脏解决方案是扩展QLabel和覆盖paintEvent()填充其边界矩形的方法。

今天,我打开qt-assistant并阅读了样式参考属性列表。幸运的是,它有一个示例说明以下内容:

QLineEdit { background-color: rgb(255, 0, 0) }

这让我在做类似下面的代码的事情上大开眼界,例如:

myLabel= QLabel()
myLabel.setAutoFillBackground(True) # This is important!!
color  = QtGui.QColor(233, 10, 150)
alpha  = 140
values = "{r}, {g}, {b}, {a}".format(r = color.red(),
                                     g = color.green(),
                                     b = color.blue(),
                                     a = alpha
                                     )
myLabel.setStyleSheet("QLabel { background-color: rgba("+values+"); }")

请注意,setAutoFillBackground()设置False不会使其工作。

问候,

于 2011-07-29T16:59:17.583 回答
14

唯一对我有用的是html。

而且我发现它比任何程序化方法都容易得多。

以下代码根据调用者传递的参数更改文本颜色。

enum {msg_info, msg_notify, msg_alert};
:
:
void bits::sendMessage(QString& line, int level)
{
    QTextCursor cursor = ui->messages->textCursor();
    QString alertHtml  = "<font color=\"DeepPink\">";
    QString notifyHtml = "<font color=\"Lime\">";
    QString infoHtml   = "<font color=\"Aqua\">";
    QString endHtml    = "</font><br>";

    switch(level)
    {
        case msg_alert:  line = alertHtml % line; break;
        case msg_notify: line = notifyHtml % line; break;
        case msg_info:   line = infoHtml % line; break;
        default:         line = infoHtml % line; break;
    }

    line = line % endHtml;
    ui->messages->insertHtml(line);
    cursor.movePosition(QTextCursor::End);
    ui->messages->setTextCursor(cursor);
}
于 2011-08-03T23:03:25.833 回答
13

设置有关任何小部件颜色的任何功能的最佳方法是使用QPalette

找到您要查找的内容的最简单方法是打开 Qt Designer 并设置 QLabel 的调色板并检查生成的代码。

于 2010-05-02T18:03:07.343 回答
7

This one is working perfect

QColorDialog *dialog = new QColorDialog(this);
QColor color=  dialog->getColor();
QVariant variant= color;
QString colcode = variant.toString();
ui->label->setStyleSheet("QLabel { background-color :"+colcode+" ; color : blue; }");

getColor() method returns the selected color. You can change label color using stylesheet

于 2015-11-07T16:11:24.720 回答