BindingList<T> and INotifyPropertyChanged
In beta1 the bindinglist<T> could fire itemchanged events when a property of T changed when T implemented IPropertyChanged. In beta 2 this changed to INotifyPropertyChanged. Now I cannot get this working again: When I fire a propertychanged event on T, the bindinglist does not fire itemchanged events. For example
BindingList<FooObject> list = new BindingList<FooObject>();
FooObject foo = new FooObject("FooName");
list.Add(foo);
list.ListChanged += new ListChangedEventHandler(ListChanged);
foo.Name = "Changed FooName";
the change of name does not fire the the list change event (it implements INotifyPropertyChanged correctly) . What am i overlooking?
Bye,
Ward

