使用Python设置PyQt4中QPushButton中文本的颜色

发布于 2024-11-11 13:40:17 字数 342 浏览 2 评论 0原文

我想在我的 GUI 上创建一些可点击的蓝色文本,有点像 HTML 超链接! 我正在使用 Python 2.6 和 PyQt4。我之前曾设法设置 QLabel 的文本颜色,但不记得我是如何做到的,即使我做到了,它也是不可点击的。所以我已经转向 QPushButton,我可以像这样制作扁平的:

testbutton = qt.QPushButton("Test")
testbutton.setFlat(True)

到目前为止,我所有的搜索都找到了 c++ 和 c# 方法,但我似乎找不到 python 等效项!

任何有关如何更改文本颜色或什至完全实现此目的的不同方法的想法都将受到欢迎!

I would like to create some clickable blue text on my GUI, kind of like a HTML hyperlink!
I am using Python 2.6 and PyQt4. I have managed to set the text colour of a QLabel before, but cannot remember how i did that, even if i did its not clickable. So I have moved onto a QPushButton that I can make flat like so:

testbutton = qt.QPushButton("Test")
testbutton.setFlat(True)

So far all my searches have turned up c++ and c# methods and i cant seem to find a python equivalent!

Any ideas on how to change the text colour or even different ways of accomplishing this entirely would be most welcome!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡笑忘祈一世凡恋 2024-11-18 13:40:17

您可以使用样式表

testbutton.setStyleSheet('QPushButton {color: blue}')

You can use a Style Sheet.

testbutton.setStyleSheet('QPushButton {color: blue}')
雨轻弹 2024-11-18 13:40:17

您可以使用您的 palette 属性QPushButton 并将蓝色应用于其 ButtonText 颜色角色:

testbutton = qt.QPushButton("Test")
testbutton.setFlat(True)

palette = qt.QPalette(testbutton.palette()) # make a copy of the palette
palette.setColor(qt.QPalette.ButtonText, qt.QColor('blue'))
testbutton.setPalette(palette) # assign new palette

You can use the palette property of your QPushButton and apply your blue color to its ButtonText color role:

testbutton = qt.QPushButton("Test")
testbutton.setFlat(True)

palette = qt.QPalette(testbutton.palette()) # make a copy of the palette
palette.setColor(qt.QPalette.ButtonText, qt.QColor('blue'))
testbutton.setPalette(palette) # assign new palette
鹿! 2024-11-18 13:40:17
testbutton.setStyleSheet("background-color: #00FF00; color: #00FF00;")

在哪里:
“background-color”是“You”按钮的颜色。
“颜色”是按钮文本的颜色。

testbutton.setStyleSheet("background-color: #00FF00; color: #00FF00;")

where:
"background-color" is color of You button.
"color" is color of the text of button.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文