Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法重新定义 QML TextEdit 组件中某些字符的打印方式? 基本上我想要的只是用一些“箭头”图像替换所有选项卡。
不,那是不可能的。但是您可以用“箭头”字符替换文本中的所有选项卡以显示。
TextEdit { text: sourceText.replace("\t", "\u21E5") // ⇥ }
哈克,但可能仍然是最好的选择。