#region [颜色:16进制转成RGB]
/// <summary>
/// [颜色:16进制转成RGB]
/// </summary>
/// <param name="strColor">设置16进制颜色 [返回RGB]</param>
/// <returns></returns>
public static System.Drawing.Color HexColortoRGB(string HexColor)
{try{if (strHxColor.Length == 0){//如果为空return System.Drawing.Color.FromArgb(0, 0, 0);//设为黑色}else{//转换颜色return System.Drawing.Color.FromArgb(System.Int32.Parse(strHxColor.Substring(1, 2),System.Globalization.NumberStyles.AllowHexSpecifier),System.Int32.Parse(strHxColor.Substring(3, 2), System.Globalization.NumberStyles.AllowHexSpecifier),System.Int32.Parse(strHxColor.Substring(5, 2), System.Globalization.NumberStyles.AllowHexSpecifier));}}catch{//设为黑色return System.Drawing.Color.FromArgb(0, 0, 0);}
}
#endregion