WPF Hex to Brush Conversion
I recently found myself needing to do this and it took longer than expected! Anyway here is my solution!
BrushConverter bc = new BrushConverter();
Brush brush;
brush = (Brush)bc.ConvertFrom(ci.Colour);
txtSetterColor.Background = brush;
