我有一个对象层次结构,它们都实现了INotifyPropertyChanged。我还有一个派生自BindingList的自定义列表。
据我了解,当我添加一个将INotifyPropertyChanged强制转换为列表的对象时,PropertyChanged事件会以某种方式自动连线/转换为ListChanged事件。
但是,在我将列表设置为DataGridView的数据源之后,当我更改网格中的值时,ListChanged事件不会触发...当我进入代码时,事实证明PropertyChanged()事件没有触发,因为它是null,我认为这意味着它没有被连线/转换为BindingList的ListChanged事件,就像它应该... ...
例如:
public class Foo : INotifyPropertyChanged
{
//Properties...
private string _bar = string.Empty;
public string Bar
{
get { return this._bar; }
set
{
if (this._bar != value)
{
this._bar = value;
this.NotifyPropertyChanged("Bar");
}
}
}
//Constructor(s)...
public Foo(object seed)
{
this._bar = (string)object;
}
//PropertyChanged event handling...
public event PropertyChangedEventHandler PropertyChanged;
protected void NotifyPropertyChanged(String info)
{
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}
}
这是我的自定义列表类......
public class FooBarList : BindingList<Foo>
{
public FooBarList(object[] seed)
{
for (int i = 0; i < seed.Length; i++)
{
this.Items.Add(new Foo(this._seed[i]));
}
}
}
有任何想法或建议吗?
谢谢!
约什
答案 0 :(得分:2)
我认为问题在于您是在呼叫this.Items.Add()
而不是this.Add()
。 Items
属性返回基础List<T>
,其Add()
方法没有您想要的功能。