vote up 0 vote down star

How can I convert a System.Windows.Media.Brush to System.Drawing.Brush?

I'm trying to get the color of a system.windows.media.brush formatted to a System.Drawing.Color object.

The below solution doesn't work because it requires a solidcolorbrush object, whereas the object i need converting from is a system.windows.media.brush object:

public System.Drawing.Color GetColor( System.Windows.Media.SolidColorBrush oBrush )
{
   return System.Drawing.Color.FromArgb( oBrush.Color.A,
                                     oBrush.Color.R,
                                     oBrush.Color.G,
                                     oBrush.Color.B );
}
flag

1 Answer

vote up 0 vote down check

I believe you can just cast it as a SolidColorBrush to get the color.

Try something like:

MyColor = ((SolidColorBrush)MyMediaBrush).Color;
link|flag
You really should do a direct cast otherwise if the cast fails you'll get a confusing null reference exception instead of a more descriptive invalid cast exception. – Nathan Baulch Jun 26 at 2:56
Thanks Nathan, I was under the assumption that the two methods only differed in syntax. This is great to know. – stevosaurus Jun 26 at 13:27

Your Answer

Get an OpenID
or

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