PyQt 为特定元素赋予颜色
这可能是一个简单的问题,但我试图为我的应用程序中的特定 QLabel 提供颜色,但它不起作用。
我尝试的代码如下:
nom_plan_label = QtGui.QLabel()
nom_plan_label.setText(nom_plan_vignette)
nom_plan_label.setStyleSheet("QLabel#nom_plan_label {color: yellow}")
任何提示将不胜感激
This might be an easy question, but I'm trying to give a color to a specific QLabel in my application and it doesn't work.
The code I tried is the following :
nom_plan_label = QtGui.QLabel()
nom_plan_label.setText(nom_plan_vignette)
nom_plan_label.setStyleSheet("QLabel#nom_plan_label {color: yellow}")
Any hint would be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的样式表语法存在一些问题。
首先,
ID
选择器(即#nom_plan_label
)必须引用小部件的objectName
。其次,只有当样式表应用于祖先小部件并且您希望某些样式规则向下级联到特定的后代小部件时才需要使用选择器。如果您将样式表直接应用于一个小部件,则可以省略选择器(和大括号)。
鉴于以上两点,您的示例代码将变为:
或者,更简单地说:
There are a few things wrong with the stylesheet syntax you are using.
Firstly,
ID
selectors (i.e.#nom_plan_label
) must refer to theobjectName
of the widget.Secondly, it is only necessary to use selectors when a stylesheet is applied to an ancestor widget and you want certain style rules to cascade down to particular descendant widgets. If you're applying the stylesheet directly to one widget, the selector (and braces) can be left out.
Given the above two points, your example code would become either:
or, more simply: