To support collection change notification, your data source collection should implement INotifyCollectionChanged interface, you can use the stock ObservableCollection instead without rolling up your own, and each data object within the ObservableCollection should implement INotifyPropertyChanged interface to enable property change notification.
Hope this helps
Hope this helps