I have a class FriendsByFirstLetter derived from ObservableCollection<Group<Friend>>, where Group<T> is derived from ObservableCollection<T> too. I've set FriendsByFirstLetter object - myFriendsByFirstLetter to myLonglistselector.ItemsSource.

Now I change (myFriendsByFirstLetter[0][0] as Friend).Age = 111; property, but myLonglistselector doesn't show changes, though it shows changes after myFriendsByFirstLetter[0][0] = myFriendsByFirstLetter[0][0];

What i have to do to make myLonglistselector autoupdate itself automatically?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Your Friend class needs to implement INotifyPropertyChanged.

link|improve this answer
Thank you very much. SOLVED. – Hovo Nov 9 '11 at 16:19
To mark a question as solved on StackOverflow, click the checkmark to the left of the answer. – Claus Jørgensen Nov 9 '11 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.