Possible Duplicate:
How to get Color from Hex color code using .NET?
I want to convert a string like #FFFFFF to System.Drawing.Color. How do you do that?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
string hex = "#FFFFFF"; Color _color = System.Drawing.ColorTranslator.FromHtml(hex);
Note: the hash is important!
Method 2
You can do
var color = System.Drawing.ColorTranslator.FromHtml("#FFFFFF");
Or this (you will need the System.Windows.Media namespace)
var color = (Color)ColorConverter.ConvertFromString("#FFFFFF");
Method 3
Remove the ‘#’ and do
Color c = Color.FromArgb(int.Parse("#FFFFFF".Replace("#",""),
System.Globalization.NumberStyles.AllowHexSpecifier));
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0