本文介绍了如何在 QML Text 上的特定单词上添加颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好,我想为要在 QML 文本中使用的字符串的特定单词添加不同的颜色
Hello i would like to add different color on specific words of a string to be used in QML Text
Text {
text: "Blue Red Yellow Green"
}
我知道您可以为整个文本添加颜色,但我想在特定单词上添加特定颜色.这可能吗?又是如何实现的?
I know that you can add color to the whole text, but i would like to add specific color on specific words. is this possible? and how is it achieved?
推荐答案
Text
项目可以显示纯文本和富文本.例如,您可以:
Text
items can display both plain and rich text. For example you can have:
Text {
text: "<font color="#0000FF">Blue</font> <font color="#FF0000">Red</font>"
}
这篇关于如何在 QML Text 上的特定单词上添加颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!