在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
。 这意味着,以下代码不会更改QLineEdit
的background-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
是不可能的,因为QLineEdit
的background-color
必须是动态的。
我的问题:如何将QLineEdit
的背景色与QPalette::base
联系起来,以定义QLineEdit
与QPalette
动态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)
。但是,如果我想像上面的例子一样为框架着色,那是什么?到目前为止,我还没有找到解决方案。我对每一个答案都感到高兴。