Hi All,
Does anyone know how to convert a string that represents a color into a SolidColorBrush in wpf?
For e.g:
string colorRed = "Red"; SolidColorBrush fromStringToColor = new SolidColorBrush(colorRed);
That's sort of what I'm trying to accomplish. Any ideas?
Thanks in advance.