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

本文关键字:复杂 结构 绑定 属性 | 更新日期: 2023-09-27 18:00:31

这个问题完全涉及代码,没有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()); 

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

感谢

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

首先,Location类需要实现INotifyPropertyChanged,因此任何使用isAnOption作为源的绑定在更改时都会得到通知。

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

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

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