1

在 qt 中,您通常QWidget使用QPalette.

例子:

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

QLineEdit *line = new QLineEdit();
line->setPalette(palette);

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

例子:

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

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

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

QLineEdit *line = new QLineEdit();
line->setPalette(palette);
line->setStyleSheet("border: 1px solid green");

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

我的问题:如何将 with 的背景颜色连接起来QLineEdit以动态QPalette::base定义with ?background-colorQLineEditQPalette

4

3 回答 3

11

或者:

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

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

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

于 2019-01-30T03:37:17.207 回答
5

只需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);
于 2018-08-17T11:18:13.747 回答
0

我找到了适合我情况的解决方案。因为我只想遮住边框,不想给它上色,所以可以使用QLineEdit::setFrame(bool). 但是,如果我想像上面的例子那样给框架上色呢?到目前为止,我还没有找到解决方案。我对每一个答案都很满意。

于 2018-08-17T10:59:41.343 回答