ColorTranslator'ı kullanmak istemiyorsanız, kolayca yapabilirsiniz:
string colorcode = "#FFFFFF00";
int argb = Int32.Parse(colorcode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);
Renk kodu, ARGB değerinin yalnızca onaltılık gösterimidir.
DÜZENLE
Tek bir tamsayı yerine 4 değer kullanmanız gerekiyorsa, bunu kullanabilirsiniz (birkaç yorumu birleştirerek):
string colorcode = "#FFFFFF00";
colorcode = colorcode.TrimStart('#');
Color col; // from System.Drawing or System.Windows.Media
if (colorcode.Length == 6)
col = Color.FromArgb(255, // hardcoded opaque
int.Parse(colorcode.Substring(0,2), NumberStyles.HexNumber),
int.Parse(colorcode.Substring(2,2), NumberStyles.HexNumber),
int.Parse(colorcode.Substring(4,2), NumberStyles.HexNumber));
else // assuming length of 8
col = Color.FromArgb(
int.Parse(colorcode.Substring(0, 2), NumberStyles.HexNumber),
int.Parse(colorcode.Substring(2, 2), NumberStyles.HexNumber),
int.Parse(colorcode.Substring(4, 2), NumberStyles.HexNumber),
int.Parse(colorcode.Substring(6, 2), NumberStyles.HexNumber));
Not 1 : NumberStyles System.Globalization içindedir.
Not 2 : Lütfen kendi hata kontrolünüzü sağlayın (renk kodu, 6 veya 8 karakterlik onaltılık bir değer olmalıdır)