INotifyPropertyChanged not working on ObservableCollection property
问题 I have a class called IssuesView which implements INotifyPropertyChanged . This class holds an ObservableCollection<Issue> and exposes it as a DependencyProperty called Issues for consumption by Bindings . It is defined as below - public class IssuesView : DependencyObject, INotifyPropertyChanged { public Issues Issues { get { return (Issues)GetValue(IssuesProperty); } set { SetValue(IssuesProperty, value); if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(