如何使用Qt qss选择器

时间:2016-12-13 14:11:32

标签: qt qtstylesheets

我无法按照here所述的qss选择器工作。

这是我的.qss:

QHBoxLayout QLabel {
    background-color: red;
    font-family: "Times New Roman", Georgia, Serif;
}

这对我的QLabel

没有影响

然而,这将:

QLabel {
    background-color: red;
    font-family: "Times New Roman", Georgia, Serif;
}

如此处所见

奖金编辑:

这似乎有所不同

有人可以解释发生了什么吗?

0 个答案:

没有答案