I know how to create a SolidColorBrush of color blue and return it like this within a converter:
return new SolidColorBrush(Colors.Blue);
However what if I needed the SolidColorBrush to be of this Hex value? #44FFFF00 ?
How do I do that?
Thanks,