WPF MVVM PropertyChangedEventHandler always null - Not updating Binding [Answered]
I have a MainWindow which loads a view (UserControl) in a ContentControl as Content per Binding to an Property in my MainViewModel.
The initial Load works fine but changes made afterwards don't get published to the MainView.
OnPropertyChanged is being called- and INotifyPropertyChanged is implemented via an "ObservableObject" Wrapper-Class.
The PropertyChangedEventHandler is always null the View never attaches to it.
My MainWindow
My ViewModel
The initial Load works fine but changes made afterwards don't get published to the MainView.
OnPropertyChanged is being called- and INotifyPropertyChanged is implemented via an "ObservableObject" Wrapper-Class.
The PropertyChangedEventHandler is always null the View never attaches to it.
My MainWindow
My ViewModel