Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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,

share|improve this question

3 Answers

up vote 12 down vote accepted
new SolidColorBrush(Color.FromArgb(0x44, 0xFF, 0xFF, 0));

(Documentation)

Note: Don't use Color.FromRgb() (without the A) if your code will be shared in both Silverlight and WPF, as the FromRgb method doesn't exist in Silverlight.

share|improve this answer
Thank you very much! – Kave Jun 13 '11 at 21:52

Try

(Brush)(new BrushConverter().ConvertFrom("#44FFFF00"));

much better IMHO

share|improve this answer
This will not work in Silverlight. – Alex May 14 at 8:59

Try new SolidColorBrush(Color.FromArgb(0x44FFFF00));

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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