当前位置:  开发笔记 > IOS > 正文

如何在Windows 8中将十六进制代码转换为颜色

如何解决《如何在Windows8中将十六进制代码转换为颜色》经验,为你挑选了1个好方法。

我有代码十六进制代码"FFB800",我需要在WinRT中转换为"颜色".

提前致谢.



1> Hutjepower..:

问题的目的是什么?是否可以在普通的XAML中执行此操作?XAML确实采用十六进制代码.

    

否则在代码隐藏中我在Windows 8应用程序中使用了或多或少的以下内容:

    var hexCode = "#FFFFB800";
    var color = new Color();
    color.A = byte.Parse(hexCode.Substring(1, 2), NumberStyles.AllowHexSpecifier);
    color.R = byte.Parse(hexCode.Substring(3, 2), NumberStyles.AllowHexSpecifier);
    color.G = byte.Parse(hexCode.Substring(5, 2), NumberStyles.AllowHexSpecifier);
    color.B = byte.Parse(hexCode.Substring(7, 2), NumberStyles.AllowHexSpecifier);

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有