BindingList<T> and INotifyPropertyChanged

Hi,
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
[739 byte] By [Fizgig] at [2007-12-16]
# 1
Nobody?
Fizgig at 2007-8-21 > top of Msdn Tech,.NET Development,.NET Base Class Library...
# 2
I just whipped up some code to test this, and I am experiencing the same thing.

Then I came across the following post:

http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=4435

Apparently it was added post Beta 2.

DavidM.Kean at 2007-8-21 > top of Msdn Tech,.NET Development,.NET Base Class Library...

.NET Development

Site Classified