I am looking for a simple way to format my result using the following criteria: If positive, add a plus and show it green, if it's negative add a minus and show it red.
I am half way there, I just don't know what's the easiest way to get the color formatting. Is there a way without using a value converter?
<TextBlock Text="{Binding Path=ActualValue, StringFormat='({0:+0.0;-0.0})'}"></TextBlock>
What's the smartest way to go about this? Thank you.