3
Answers

Collection with INotifyCollectionChanged and INotifyPropertyChanged

Rikam Palkar

Rikam Palkar

3y
881
1

Here is the scenario, 

I have a grid, ObservableCollection<T> ListOfEmployees; ObservableCollection does great job notifying if item has been added or removed. But what if specific property of type T has been modified, It fails to notify the same. I need a collection with both capabilities, to notify if Item has been changed and the property inside a item been changed.

Thank you in advance,

Rikam.

Answers (3)