The MSDN reference page for ObservableCollection<T>
notes:
"The objects in your collection must satisfy the requirements described in the Binding Sources Overview. In particular, if you are using OneWay or TwoWay (for example, you want your UI to update when the source properties change dynamically), you must implement a suitable property changed notification mechanism such as the INotifyPropertyChanged interface."
Since ObservableCollection<T>
already implements INotifyPropertyChanged
, why do I need to again implement INotifyPropertyChanged
on T
also?