C # Linking to an ObservableCollection in another ObservableCollection

I have an ObserveableCollection that contains another ObserveableCollection. In my WPF, I set the binding to Person.Lectures. My problem now, when I change any value in the collection of "lectures", the collection "people" does not notify about it, and I am not attached to any. Is this generally a problem when using an ObserveableCollection in another ObserveableCollection?

How can I solve this problem so that my binding will respond?

+3
source share
3 answers

ObservableCollection INotifyCollectionChanged, (, ..) .

, , , ObservableCollection, INotifyPropertyChanged. , , , , .

+3

. "" ? , , "", ObservableCollection. , ObservableCollection, "", ObservableCollection?

, ObservableCollection of Person, ObservableCollection of Lectures. ? , , .

0

( WPF ) ObservableCollection, BindingList "" .

, BindingList BindingList , .

.

0

All Articles