vb.net – 将html或rgb颜色转换为system.drawing.brush

前端之家收集整理的这篇文章主要介绍了vb.net – 将html或rgb颜色转换为system.drawing.brush前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将html颜色(例如#FFFFD2或RGB 255,255,210)转换为其等效的画笔颜色.
我在listBox_drawitem事件中这样做.看到我正在使用的示例代码,我从互联网上获得,但它不工作.我想用这种颜色绘制listitem背景,但项目背景被涂成白色
dim col as string = "#FFFFFF"
Dim myBrush as Brush = new SolidBrush(Color.FromARGB(Integer.Parse( col.Substring( 1 ),System.Globalization.NumberStyles.HexNumber ) ) )

有人可以帮忙吗?

您可以使用ColorTranslator.FromHtml()方法.此方法将返回Color类.
Dim b as new SolidBrush(ColorTranslator.FromHtml("#FFFFD2"))
原文链接:/vb/255368.html

猜你在找的VB相关文章