Qt在样式表中使用调色板颜色



在qt中,您通常使用QPalette设置QWidget的颜色。

例:

QPalette palette = new QPalette();
palette.setBrush(QPalette::Base, this->palette().backgorund());
QLineEdit *line = new QLineEdit();
line->setPalette(palette);

现在我有一点问题。无法使用QPalette更改 QLineEdit 的边框颜色。这意味着,我必须使用QStyleSheet

例:

QLineEdit *line = new QLineEdit();
line.setStyleSheet("border: 1px solid green");

但是现在我不能用QPalette设置QLineEdit的基色,因为QLineEdit的背景色不再连接到QPalette::base。 这意味着,以下代码不会更改QLineEditbackground-color

QPalette palette = new QPalette();
palette.setBrush(QPalette::Base, this->palette().backgorund());
QLineEdit *line = new QLineEdit();
line->setPalette(palette);
line->setStyleSheet("border: 1px solid green");

但是,在样式表中定义QLineEdit的background-color是不可能的,因为QLineEditbackground-color必须是动态的。

我的问题:如何将QLineEdit的背景色与QPalette::base联系起来,以定义QLineEditQPalette动态background-color

或者:

line->setStyleSheet(QStringLiteral(
"border: 1px solid green;"
"background-color: palette(base);"
));

参考: http://doc.qt.io/qt-5/stylesheet-reference.html#paletterole

使用PaletteRole还可以让 CSS 位于单独的文件/源中。

只需在运行时构造所需的QString...

auto style_sheet = QString("border: 1px solid green;"
"background-color: #%1;")
.arg(QPalette().color(QPalette::Base).rgba(), 0, 16);

以上应该会导致QString,例如...

border: 1px solid green;
background-color: #ffffffff;

然后。。。

line->setStyleSheet(style_sheet);

我找到了适合我的情况的解决方案。因为我只想遮罩边框,而不想给它着色,所以我可以使用该方法QLineEdit::setFrame(bool)。但是,如果我想像上面的例子一样为框架着色,那是什么?到目前为止,我还没有找到解决方案。我对每一个答案都感到高兴。

相关内容

  • 没有找到相关文章

最新更新