c#将类属性绑定到复杂结构

时间:2011-06-28 16:30:28

标签: c# dynamic binding

这个问题完全涉及代码而不涉及XAML。

所以我有这个名为Location的课程:

public class Location
{
    public int id { get; set; }
    public double latitude { get; set; }
    public double longitude { get; set; }
    public string name { get; set; }
    public string type { get; set; }
    public bool isAnOption { get; set; }

    public Location(int newId, double newLatitude, double newLongitude, string newName, string newType)
    {
        id = newId;
        latitude = newLatitude;
        longitude = newLongitude;
        name = newName;
        type = newType;
        isAnOption = true;
    }

    public System.Windows.Shapes.Ellipse createIcon()
    {
        System.Windows.Shapes.Ellipse icon = new System.Windows.Shapes.Ellipse();
        SolidColorBrush brush;
        if (isAnOption)
        {
            brush = new SolidColorBrush(Colors.Blue);
        }
        else
        {
            brush = new SolidColorBrush(Colors.Red);
        }
        brush.Opacity = 0.5;
        icon.Fill = brush;
        icon.Height = icon.Width = 44;
        icon.HorizontalAlignment = HorizontalAlignment.Left;
        icon.VerticalAlignment = VerticalAlignment.Top;

        Thickness locationIconMarginThickness = new Thickness(0, 0, 0, 0);
        locationIconMarginThickness.Left = (longitude - 34.672852) / (35.046387 - 34.672852) * (8704) - 22;
        locationIconMarginThickness.Top = (32.045333 - latitude) / (32.045333 - 31.858897) * (5120) - 22;
        icon.Margin = locationIconMarginThickness;

        Label labelName = new Label();
        labelName.Content = name;

        StackPanel locationData = new StackPanel();
        locationData.Children.Add(labelName);

        ToolTip toolTip = new ToolTip();
        toolTip.Content = locationData;

        icon.ToolTip = toolTip;

        return icon;
    }
}

非常直接。请注意createIcon方法。

现在,在MainWindow(它是一个WPF项目)中,我声明List<Location> locations并用数据填充它。

在某些时候,我将“图标”放在现有的GridScroller上,如下所示:

gridScroller.Children.Add(location.createIcon()); 

现在,我遇到的问题是我想将isAnOption的属性Location绑定到相应图标画笔颜色的画笔颜色。换句话说,当从isAnOption派生的某个对象的属性Location发生更改时,我希望该更改反映在GridScroller上的椭圆的颜色中。 请帮助。

由于

1 个答案:

答案 0 :(得分:2)

首先,您的位置类需要implement INotifyPropertyChanged,因此任何使用isAnOption作为源的绑定都会在更改后得到通知。

然后您可以将Fill属性绑定到您的属性,如下所示:

Binding binding = new Binding("isAnOption") {
    Source = this,
    Converter = new MyConverter(),
};
icon.SetBinding(Ellipse.FillProperty, binding);

最后,MyConverter将是一个自定义IValueConverter,它会根据传递的bool值返回蓝色或红色画笔。