如何从HEX Windows 8应用程序获取System.Windows.Media.Color

时间:2015-03-25 08:34:49

标签: c# windows-phone-8

我想在 Windows 8移动应用程序中设置网页颜色值的边框背景颜色。

我发现了一种将hex转换为Argb的方法,但它对我不起作用..

  private System.Windows.Media.Color FromHex(string hex)
        {
            string colorcode = hex;
            int argb = Int32.Parse(colorcode.Replace("#", ""), System.Globalization.NumberStyles.HexNumber);
            return System.Windows.Media.Color.FromArgb((byte)((argb & -16777216) >> 0x18),
                                  (byte)((argb & 0xff0000) >> 0x10),
                                  (byte)((argb & 0xff00) >> 8),
                                  (byte)(argb & 0xff));


        }

我正在使用上面的方法,如..

     Border borderCell = new Border();
     var col = FromHex("#DD4AA3");
     var color =new System.Windows.Media.SolidColorBrush(col);
     borderCell.Background = color;

但是如果我传递下面的颜色十六进制值

            var col = FromHex("#FFEEDDCC");

它的工作正常,但它不适用于我的十六进制颜色值。

在发布此问题之前,我将通过此堆栈答案。 How to get Color from Hexadecimal color code using .NET?

Convert System.Drawing.Color to RGB and Hex Value

2 个答案:

答案 0 :(得分:7)

最后我发现了一个从十六进制字符串返回颜色的方法

 public System.Windows.Media.Color ConvertStringToColor(String hex)
    {
        //remove the # at the front
        hex = hex.Replace("#", "");

        byte a = 255;
        byte r = 255;
        byte g = 255;
        byte b = 255;

        int start = 0;

        //handle ARGB strings (8 characters long)
        if (hex.Length == 8)
        {
            a = byte.Parse(hex.Substring(0, 2), System.Globalization.NumberStyles.HexNumber);
            start = 2;
        }

        //convert RGB characters to bytes
        r = byte.Parse(hex.Substring(start, 2), System.Globalization.NumberStyles.HexNumber);
        g = byte.Parse(hex.Substring(start + 2, 2), System.Globalization.NumberStyles.HexNumber);
        b = byte.Parse(hex.Substring(start + 4, 2), System.Globalization.NumberStyles.HexNumber);

        return System.Windows.Media.Color.FromArgb(a, r, g, b);
    }

答案 1 :(得分:0)

为什么不简单地使用System.Windows.Media.ColorConverter?

  

颜色=   (彩色)System.Windows.Media.ColorConverter.ConvertFromString( “#EA1515”);