System.Drawing.Color ToKnownName

时间:2017-04-25 03:32:30

标签: c# system.drawing.color

我需要一个与System.Drawing.Color.FromKnownName相反的函数,它将System.Drawing.Color.Red转换为" Red"或"红色"。

提供示例代码:

    private static XElement BlipToXml(Blip blip)
    {
        var tmp = new XElement("Blip",
           new XAttribute("X", blip.Position.X),
           new XAttribute("Y", blip.Position.Y),
           new XAttribute("Z", blip.Position.Z),
           new XAttribute("color", blip.Color.), <-- This is where i need the ToKnownName
           new XAttribute("transparency", blip.Alpha),
           new XAttribute("sprite", blip.Sprite));
        tmp.SetValue(blip.Name);
        return tmp;
    }
    private static Blip XmlToBlip(XElement xml)
    {
        var x = float.Parse(xml.Attribute("X").ToString());
        var y = float.Parse(xml.Attribute("Y").ToString());
        var z = float.Parse(xml.Attribute("Z").ToString());
        var coords = new Vector3(x,y,z);
        var tmp = new Blip(coords);
        tmp.Color = System.Drawing.Color.FromName(xml.Attribute("color").ToString());
        tmp.Alpha = float.Parse(xml.Attribute("transparency").ToString());
        tmp.Sprite = (BlipSprite)Enum.Parse(typeof(BlipSprite), xml.Attribute("sprite").ToString());
        tmp.Name = xml.Value;
        return tmp;
    }

1 个答案:

答案 0 :(得分:1)

此方法使用反射检查Color类上的预定义颜色,并将它们与作为参数传入的颜色进行比较。

private static String GetColorName(Color color)
{
    var predefined = typeof(Color).GetProperties(BindingFlags.Public | BindingFlags.Static);
    var match = (from p in predefined where ((Color)p.GetValue(null, null)).ToArgb() == color.ToArgb() select (Color)p.GetValue(null, null));
    if (match.Any())
       return match.First().Name;
    return String.Empty;
}