c# 把 颜色值Hex 转换为 Color_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > c# 把 颜色值Hex 转换为 Color

c# 把 颜色值Hex 转换为 Color

 2013/11/20 19:29:54  [↑起↑]  博客园  我要评论(0)
  • 摘要:原文:http://abujj.me/archives/695AssumingyoumeantheHTMLtypeRGBcodes(calledHexcodes,suchas#FFCC66),usetheColorTranslatorclass:System.Drawing.Colorcol=System.Drawing.ColorTranslator.FromHtml("#FFCC66");If,howeveryouareusinganARGBhexcode
  • 标签:C#

原文:

 http://abujj.me/archives/695

 

Assuming you mean the HTML type RGB codes (called Hex codes, such as #FFCC66), use theColorTranslator class:

 

System.Drawing.Color col = System.Drawing.ColorTranslator.FromHtml("#FFCC66");

 

If, however you are using an ARGB hex code, you can use the ColorConverter class from the System.Windows.Media namespace:
Color col = ColorConverter.ConvertFromString("#FFDFD991") as Color;

 



引用地址:
http://stackoverflow.com/questions/2109756/how-to-get-color-from-hexadecimal-color-code-using-net

 

上一篇: 如何判断一个文字再服务器上是否存在 下一篇: 没有下一篇了!
发表评论
用户名: 匿名