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

有帮助吗?

解决方案

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

其他提示

Use System.Collections.ObjectModel.ObservableCollection class.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top