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 上的特定单词上添加颜色
基础教程推荐
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
