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 { text: sourceText.replace("\t", "\u21E5") // ⇥ }
ハッキーですが、おそらくまだ最良のオプションです。