Greetings, I have some List of objects of Type CMessage. CMessage can look as follows:
public ROWGUID {get;set;}
public ObservableCollection<CAnswer> Answers
{
get {return _Answer;}
set
{_Answer=value
RaisePropertyChanged("Answer");
}
}
each property has RaiseNotifyPropertyChanged method which Is implementation of INotifyPropertyChanged interface. The point is:
- I select some Message From the list of ObservableCollection Messages;
- I add some Answers to my selected message
Why There is no RaisePropertyChanged executed for that message? It should!