Reputation: 381
how to get each character of a textblock of different color in wpf?
Upvotes: 27
Views: 49986
Reputation: 33252
Use many different 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>
This produce the result:
Upvotes: 64