I have a line of text in a textblock that reads:
"Detected [gesture] with an accuracy of [accuracy]"
In WPF, is it possible for me to be able to change the color of the elements within a textblock? Can I have a textblock be multiple colors? For example, I would like the whole TextBlock to be black except the gesture name, which I would like to be red.
Is this possible in WPF?
Detected
,Gesture
,with an accuracy of
, andAccuracy
) will not be on the same line - they'll be single-spaced on different lines, instead. But I like the concept. – Wallsend