web-dev-qa-db-ja.com

各文字のWPF TextBlock色

wpfで異なる色のテキストブロックの各文字を取得する方法

19
chetan

多くの異なるrunsを使用します:

 <TextBlock FontSize="22">
            <Run Foreground="Gold">H</Run>
            <Run Foreground="Maroon">e</Run>
            <Run Foreground="Blue">l</Run>
            <Run Foreground="Orange">l</Run>
            <Run Foreground="Brown">o</Run>
        </TextBlock>

これは結果を生成します: enter image description here

45
Felice Pollano