如何从Rectangle in fill属性中获取颜色?

时间:2018-11-19 09:53:30

标签: wpf colors fill rectangles converters

我知道如何通过WPF控件设置填充。

Rectangle a = new Rectangle()
a.Fill = Brushes.Red;

但是我无法获得颜色。

我想要这样的代码。

string color = a.Fill; // Red
var color2 = a.Fill(T); // Brushes.Red
var color3 = a.Fill; // other object

1 个答案:

答案 0 :(得分:0)

如果我对您的理解正确,那么您想在Rectangle.Fill属性中以字符串的形式获取颜色的名称(在xaml中键入颜色的方式)吗?

我已经找到了对此here

的解决方案

在您的代码中,它应如下所示:

      SolidColorBrush brush = (SolidColorBrush)a.Fill;
  Color c = brush.Color;
  var colorname = (from p in typeof(System.Drawing.Color).GetProperties()
                   where p.PropertyType.Equals(typeof(System.Drawing.Color))
                   let value = (System.Drawing.Color)p.GetValue(null, null)
                   where value.R == c.R &&
                         value.G == c.G &&
                         value.B == c.B &&
                         value.A == c.A
                   select p.Name).DefaultIfEmpty("unknown").First(); 

对于我的矩形<Rectangle Name="a" Fill="Aqua"></Rectangle>,字符串将返回“ Aqua”。