WPF TextBlock Color for each Character WPF TextBlock Color for each Character wpf wpf

WPF TextBlock Color for each Character


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:enter image description here