Search code examples
c#genericscollections.net-4.0collectionbase

Generic Collection - CollectionBase, IBindingList and Firing Events on Item Changes/Edits


I've implemented a GenericCollection using IBindingList, and it works great and fires events for when items are added or removed. It doesn't fire events when items are changed/edited as expected. Is there a simple way to implement logic to catch a change or edit without having to implement INotifyPropertyChanged within each class that uses this collection?

I might be looking for something not possible, but I'm basically looking to mimic functionality of a DataTable without having to code in the INotifyPropertyChanged for each class that uses the collection and I want to have my grid receive the edits/changes.

Thanks,

Mark


Solution

  • You should use the BindingList<T> class, which already does all that.