WPF Datagrid数据绑定到具有静态属性的类和包含动态属性值项的字典



更新

我更新这篇文章是因为我做了更多的阅读,并决定重新实现我的解决方案。

原始问题:我有一个具有静态属性的类和一个属性,该属性是属性的动态集合(通过字典)。我想将我的类数据绑定到wpf数据网格,其中每个静态属性都应该是一列,每个字典条目都应该是网格中的一列。

在做了更多的研究之后,我决定实现一个PropertyBag类,该类将包含我的属性和值的Dictionary。现在几乎所有的东西都在工作。我的网格显示了所有正确的列,并且正确应用了静态属性值。

然而,现在我无法从字典中获得任何要应用到网格的值,我也不确定从这里开始该怎么办。

更多信息:

我的数据库有3个表,一个板块,一个类别和一个类别板块关联表。每个盘子可以有0到多个类别。现在,我正在用所有类别填充每个盘子,并将字符串设置为空。然后,当返回一个关联(在一个盘子和类别之间)时,我正在设置特定类别名称的实际值。这一切都发生在创建网格之前。

财产袋:

public class PropertyBag
{
    private readonly Dictionary<string, string> values = new Dictionary<string, string>();
    public string this[string key]
    {
        get 
        {
            string value;
            values.TryGetValue(key, out value);
            return value;
        }
        set
        {
            if (value == null) values.Remove(key);
            else values[key] = value;
        }
    }
}

修订版版

[TypeDescriptionProvider(typeof(PlateTypeDescriptionProvider))]
public class Plate : INotifyPropertyChanged
{
    public int ID;
    private string name;
    private string status;
    private string creator;
    private Uri location;
    private string description;
    public Plate()
    {
        CustomCategories = new PropertyBag();
    }
    public PropertyBag CustomCategories { get; set; }
    public string Name
    {
        get { return name;}
        set
        {
            name = value;
            NotifyPropertyChanged("Name");
        }
    }
    public string Status
    {
        get { return status; }
        set
        {
            status = value;
            NotifyPropertyChanged("Status");
        }
    }
    public string Creator
    {
        get { return creator; }
        set
        {
            creator = value;
            NotifyPropertyChanged("Creator");
        }
    }
    public Uri Location
    {
        get { return location; }
        set
        {
            location = value;
            NotifyPropertyChanged("Location");
        }
    }
    public string Description
    {
        get { return description; }
        set
        {
            description = value;
            NotifyPropertyChanged("Description");
        }
    }
    public static Plate ConvertDataPlateToBusinessPlate(TestPlate dataPlate)
    {
        var plate = new Plate
                        {
                            Name = dataPlate.Name, 
                            Status = dataPlate.Status,
                            Creator = dataPlate.Creator, 
                            Description = dataPlate.Description, 
                            Location = new Uri(dataPlate.Location)
                        };
        return plate;
    }
    public event PropertyChangedEventHandler PropertyChanged;
    private void NotifyPropertyChanged(string propertyName)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

修订的CustomTypeDescriptor:

public override PropertyDescriptorCollection GetProperties()
    {
        return GetProperties(null);
    }
    public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
    {
        var properties = new ArrayList();
        foreach (PropertyDescriptor propertyDescriptor in base.GetProperties(attributes))
        {
            if(propertyDescriptor.PropertyType.Equals(typeof(PropertyBag)))
            {
                //Static list of all category names
                var categoryNames = Categories.GetAll();
                foreach (var categoryName in categoryNames)
                {
                    properties.Add(new PropertyBagPropertyDescriptor(categoryName));
                }
            }
            else
            {
                properties.Add(propertyDescriptor);
            }
        }
        var props = (PropertyDescriptor[])properties.ToArray(typeof(PropertyDescriptor));
        return new PropertyDescriptorCollection(props);
    }

修改的PropertyDescriptor

    public class PropertyBagPropertyDescriptor : PropertyDescriptor
{
    public PropertyBagPropertyDescriptor(string name) : base(name, null)
    {}
    public override bool CanResetValue(object component)
    {
        return true;
    }
    public override object GetValue(object component)
    {
        return ((PropertyBag) component)[Name];
    }
    public override void ResetValue(object component)
    {
        ((PropertyBag)component)[Name] = null;
    }
    public override void SetValue(object component, object value)
    {
        ((PropertyBag) component)[Name] = (string) value;
    }
    public override bool ShouldSerializeValue(object component)
    {
        return ((PropertyBag)component)[Name] != null;
    }
    public override Type ComponentType
    {
        get { return typeof(PropertyBag); }
    }
    public override bool IsReadOnly
    {
        get { return false; }
    }
    public override Type PropertyType
    {
        get { return typeof(string); }
    }
}

简单视图模型

 public TestPlateAdministratorViewModel()
    {
        CommandAggregator = new TestPlateAdministratorCommandAggregator(this);
        LoadData();
    }
    public static TestPlateAdministratorCommandAggregator CommandAggregator { get; set; }
    public ObservableCollection<Plate> TestPlates{ get; set; }
    private static void LoadData()
    {
        CommandAggregator.LoadPlatesCommand.Execute(null);
        CommandAggregator.LoadCategoriesCommand.Execute(null);
    }
}

PropertyBag中的Dictionary是固定大小的还是已知的密钥?

您没有为数据网格发布xaml,但从属性标签到一列的绑定可能看起来像这样:

<DataGridTextColumn Header="Col4TestKey" Binding="{Binding CustomCategories[test]}"/>

我真的不知道你的PropertyBag setter是否能处理绑定。如果你的字典有一套已知的关键字,所有这些都会起作用。

顺便说一句,我在我的项目中使用平面数据表来处理这些动态的东西,它们真的很容易处理。

最新更新