3

我有一个全部实现 INotifyPropertyChanged 的​​对象层次结构。我还有一个从 BindingList 派生的自定义列表。

我的理解是,当我向列表中添加一个将 INotifyPropertyChanged 引入元素的对象时,PropertyChanged 事件会以某种方式自动连接/转换为 ListChanged 事件。

但是,在我将列表设置为 DataGridView 的数据源后,当我更改网格中的值时,ListChanged 事件不会触发......当我进入代码时,事实证明 PropertyChanged() 事件不是触发是因为它为空,我认为这意味着它没有连接/转换为 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]));
          }
     }
}

有什么想法或建议吗?

谢谢!

乔什

4

1 回答 1

2

我认为问题是你打电话this.Items.Add()而不是this.Add(). 该Items属性返回 base List<T>,其Add()方法没有您想要的功能。

于 2009-07-20T19:20:18.360 回答