I want to create SolidColorBrush from Hex value such as #ffaacc. How can I do this?
On MSDN, I got :
SolidColorBrush mySolidColorBrush = new SolidCol
Try this instead:
(SolidColorBrush)(new BrushConverter().ConvertFrom("#ffaacc"));