从十六进制颜色值创建SolidColorBrush


129

我想从十六进制值(例如#ffaacc)创建SolidColorBrush。我怎样才能做到这一点?

在MSDN上,我得到了:

SolidColorBrush mySolidColorBrush = new SolidColorBrush();
mySolidColorBrush.Color = Color.FromArgb(255, 0, 0, 255);

所以我写了(考虑到我的方法将颜色接收为#ffaacc):

Color.FromRgb(
  Convert.ToInt32(color.Substring(1, 2), 16), 
  Convert.ToInt32(color.Substring(3, 2), 16), 
  Convert.ToInt32(color.Substring(5, 2), 16));

但这给了错误

The best overloaded method match for 'System.Windows.Media.Color.FromRgb(byte, byte, byte)' has some invalid arguments

另外还有3个错误,例如: Cannot convert int to byte.

但是,MSDN示例如何工作?


6
太愚蠢了,他们不允许默认的#FFFFFF格式。
MrFox 2012年

1
这些都不适合UWP
kayleeFrye_onDeck

Answers:


325

尝试以下方法:

(SolidColorBrush)(new BrushConverter().ConvertFrom("#ffaacc"));

17

如何使用.NET从十六进制颜色代码中获取颜色?

我认为这是您的追求,希望它能回答您的问题。

为了使您的代码正常工作,请使用Convert.ToByte而不是Convert.ToInt ...

string colour = "#ffaacc";

Color.FromRgb(
Convert.ToByte(colour.Substring(1,2),16),
Convert.ToByte(colour.Substring(3,2),16),
Convert.ToByte(colour.Substring(5,2),16));


9
using System.Windows.Media;

byte R = Convert.ToByte(color.Substring(1, 2), 16);
byte G = Convert.ToByte(color.Substring(3, 2), 16);
byte B = Convert.ToByte(color.Substring(5, 2), 16);
SolidColorBrush scb = new SolidColorBrush(Color.FromRgb(R, G, B));
//applying the brush to the background of the existing Button btn:
btn.Background = scb;

4

如果您不想每次都处理转换的麻烦,只需创建一个扩展方法。

public static class Extensions
{
    public static SolidColorBrush ToBrush(this string HexColorString)
    {
        return (SolidColorBrush)(new BrushConverter().ConvertFrom(HexColorString));
    }    
}

然后像这样使用: BackColor = "#FFADD8E6".ToBrush()

或者,如果您可以提供执行相同操作的方法。

public SolidColorBrush BrushFromHex(string hexColorString)
{
    return (SolidColorBrush)(new BrushConverter().ConvertFrom(hexColorString));
}

BackColor = BrushFromHex("#FFADD8E6");

0

vb.net版本

Me.Background = CType(New BrushConverter().ConvertFrom("#ffaacc"), SolidColorBrush)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.