I have a configuration file where a developer can specify a text color by passing in a string:

 <text value="Hello, World" color="Red"/>

Rather than have a gigantic switch statement look for all of the possible colors, it'd be nice to just use the properties in the class System.Drawing.Brushes instead so internally I can say something like:

 Brush color = Brushes.Black;   // Default

 // later on...
 this.color = (Brush)Enum.Parse(typeof(Brush), prasedValue("color"));

Except that the values in Brush/Brushes aren't enums. So Enum.Parse gives me no joy. Suggestions?

link|improve this question

73% accept rate
Note that Color and Brush is not the same thing, you seem to be mixing them up – Lucas May 22 '09 at 20:18
feedback

8 Answers

up vote 13 down vote accepted

Recap of all previous answers, different ways to convert a string to a Color or Brush:

// best, using Color's static method
Color red1 = Color.FromName("Red");

// using a ColorConverter
TypeConverter tc1 = TypeDescriptor.GetConverter(typeof(Color)); // ..or..
TypeConverter tc2 = new ColorConverter();
Color red2 = (Color)tc.ConvertFromString("Red");

// using Reflection on Color or Brush
Color red3 = (Color)typeof(Color).GetProperty("Red").GetValue(null, null);

// in WPF you can use a BrushConverter
SolidColorBrush redBrush = (SolidColorBrush)new BrushConverter().ConvertFromString("Red");
link|improve this answer
feedback

String to brush:

myTextBlock.Foreground = new BrushConverter().ConvertFromString("#FFFFFF") as SolidColorBrush;

That's my case here!

link|improve this answer
System.Drawing.ColorTranslator has FromHtml() and ToHtml() – Lucas May 22 '09 at 20:05
1  
Also note that this requires .Net 3.0 or later – Lucas May 22 '09 at 20:12
feedback

D'oh. After a while of looking I found:

 Color.FromName(a.Value)

After hitting "post". From there it's a short step to:

 color = new SolidBrush(Color.FromName(a.Value));

I'll leave this question here for others....

link|improve this answer
Strictly speaking, it's a "coincidence" that the static properties on Brushes use the same name as the static properties on Color. However, that's probably nothing to worry about. – Jon B Dec 16 '08 at 21:12
feedback

Brush myBrush = new SolidBrush(Color.FromName("Red"));

link|improve this answer
+1 An alternative is: Brush aBrush = new SolidBrush(Color.FromArgb(240, 240, 240)); – John M Dec 21 '09 at 15:13
feedback

You could use reflection for this:

Type t = typeof(Brushes);
Brush b = (Brush)t.GetProperty("Red").GetValue(null, null);

Of course, you'll want some error handling/range checking if the string is wrong.

link|improve this answer
feedback

Try using a TypeConverter. Example:

var tc = TypeDescriptor.GetConverter(typeof(Brush));

Another alternative is to use reflection, and go over the properties in SystemBrushes.

link|improve this answer
TypeDescriptor cannot convert from string to Brush. It can convert string to Color, though... – Lucas May 22 '09 at 20:10
feedback

If you want, you can extend this even more and allow them to specify values for the R, G and B values. Then you just call Color.FromArgb(int r, int g, int b);

link|improve this answer
feedback

I agree that using TypeConverters are the best method:

 Color c = (Color)TypeDescriptor.GetConverter(typeof(Color)).ConvertFromString("Red");
 return new Brush(c);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.