码迷,mamicode.com
首页 > 其他好文 > 详细

wp8 入门到精通 ---转换

时间:2014-07-22 22:52:56      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   color   art   re   c   div   

         /// <summary>
        /// 颜色字符串转Color
        /// </summary>
        public static Color ConvertFromString(string argb)
        {
            uint result;
            if (uint.TryParse(argb.TrimStart(‘#‘, ‘0‘), NumberStyles.HexNumber, null, out result))
            {
                uint a = argb.Length > 8 ? result >> 24 : 0xFF;
                uint r = result >> 16;
                uint g = (result << 8) >> 16;
                uint b = (result << 16) >> 16;

                return Color.FromArgb((byte)a, (byte)r, (byte)g, (byte)b);
            }
            return Colors.Black;
        } 

wp8 入门到精通 ---转换,布布扣,bubuko.com

wp8 入门到精通 ---转换

标签:style   color   art   re   c   div   

原文地址:http://www.cnblogs.com/luquanmingren/p/3855287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!