如何在 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>"
}
相关文章