How to add color on specific words on QML Text(如何在 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 上的特定单词上添加颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 QML Text 上的特定单词上添加颜色


基础教程推荐
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01