1

How to create a brush from the color code?

#FFFFE4C4 is an example of of what I call a color code.
e.g. what I would like to do is

Brush brush = new Brush(#FFFFE4C4);
paparazzo
  • 44,497
  • 23
  • 105
  • 176

1 Answers1

3

First get a color from the color code, the create a brush from that:

Brush brush = new SolidBrush((Color)ColorConverter.ConvertFromString("#FFFFE4C4"));
Community
  • 1
  • 1
Guffa
  • 687,336
  • 108
  • 737
  • 1,005