QLabel:设置文本和背景的颜色
如何设置 QLabel
的文本颜色和背景颜色?
How do I set color of text and background of a QLabel
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何设置 QLabel
的文本颜色和背景颜色?
How do I set color of text and background of a QLabel
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
最好和推荐的方法是使用 Qt 样式表。文档:Qt 5 样式表、Qt 6 样式表。
要更改
QLabel
的文本颜色和背景颜色,我会这样做:您还可以避免使用 Qt 样式表并更改
QPalette
颜色>QLabel,但您可能会在不同的平台和/或样式上得到不同的结果。正如 Qt 文档所述:
但你可以这样做:
但正如我所说,我强烈建议不要使用调色板并使用 Qt 样式表。
The best and recommended way is to use Qt Style Sheet. Docs: Qt 5 Style Sheet, Qt 6 Style Sheet.
To change the text color and background color of a
QLabel
, here is what I would do :You could also avoid using Qt Style Sheets and change the
QPalette
colors of yourQLabel
, but you might get different results on different platforms and/or styles.As Qt documentation states :
But you could do something like this :
But as I said, I strongly suggest not to use the palette and go for Qt Style Sheet.
您可以使用 QPalette,但是您必须设置
setAutoFillBackground(true);
才能启用背景颜色它在 Windows 和 Ubuntu 上运行良好,我还没有玩过任何其他操作系统。
注意:更多详细信息请参见QPalette,颜色角色部分
You can use QPalette, however you must set
setAutoFillBackground(true);
to enable background colorIt works fine on Windows and Ubuntu, I haven't played with any other OS.
Note: Please see QPalette, color role section for more details
我添加这个答案是因为我认为它对任何人都有用。
我遇到了设置 RGBA 颜色(即具有透明度 Alpha 值的 RGB 颜色)的问题)用于我的绘画应用程序中的彩色显示标签。
当我遇到第一个答案时,我无法设置 RGBA 颜色。我也尝试过类似的方法:
myLabel.setStyleSheet("QLabel { background-color : %s"%color.name())
其中
color
是 RGBA 颜色。因此,我的肮脏解决方案是扩展 QLabel 并覆盖填充其边界矩形的 PaintEvent() 方法。
今天,我打开了
qt-assistant
并阅读了 样式参考属性列表。幸运的是,它有一个示例,说明了以下内容:QLineEdit { background-color: rgb(255, 0, 0) }
这让我打开了思路,可以做类似下面代码的事情,例如:
请注意,在
False
中设置setAutoFillBackground()
不会使其工作。问候,
I add this answer because I think it could be useful to anybody.
I step into the problem of setting RGBA colors (that is, RGB color with an Alpha value for transparency) for color display labels in my painting application.
As I came across the first answer, I was unable to set an RGBA color. I have also tried things like:
myLabel.setStyleSheet("QLabel { background-color : %s"%color.name())
where
color
is an RGBA color.So, my dirty solution was to extend
QLabel
and overridepaintEvent()
method filling its bounding rect.Today, I've open up the
qt-assistant
and read the style reference properties list. Affortunately, it has an example that states the following:QLineEdit { background-color: rgb(255, 0, 0) }
Thats open up my mind in doing something like the code below, as an example:
Note that
setAutoFillBackground()
set inFalse
will not make it work.Regards,
唯一对我有用的是 html。
我发现它比任何编程方法都容易得多。
以下代码根据调用者传递的参数更改文本颜色。
The ONLY thing that worked for me was html.
And I found it to be the far easier to do than any of the programmatic approaches.
The following code changes the text color based on a parameter passed by a caller.
设置有关任何小部件颜色的任何功能的最佳方法是使用 QPalette。
找到所需内容的最简单方法是打开 Qt Designer 并设置 QLabel 的调色板并检查生成的代码。
The best way to set any feature regarding the colors of any widget is to use QPalette.
And the easiest way to find what you are looking for is to open Qt Designer and set the palette of a QLabel and check the generated code.
这个工作完美的
getColor()
方法返回选定的颜色。您可以使用
stylesheet
更改标签颜色This one is working perfect
getColor()
method returns the selected color.You can change label color using
stylesheet