I've been trying to figure out how to handle brushes in WPF. I want to let the user configure the colors they like and save that in a database which I've more or less figured out how to do (use solidcolorbrushes then cast that to a color and toostring gives me the value which I can save as VARCHAR in an accdb.
What I haven't been able to decipher is how to go from a string like #FFE2F2EF to a color and then a solidbrush. Seems winforms has simple ways but I can't find anything for WPF.
Of course there is probably a simple method that I just can't seem to find.
Anyone have any ideas?