使用Python设置PyQt4中QPushButton中文本的颜色
我想在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用样式表。
You can use a Style Sheet.
您可以使用您的
palette
属性QPushButton
并将蓝色应用于其ButtonText
颜色角色:You can use the
palette
property of yourQPushButton
and apply your blue color to itsButtonText
color role:在哪里:
“background-color”是“You”按钮的颜色。
“颜色”是按钮文本的颜色。
where:
"background-color" is color of You button.
"color" is color of the text of button.