In WPF, I have a ListBox with a UserControl as its ItemTemplate - all data shown ok. I have now added a text box for input in that user control. In an MVVM design, I want to take some action (re-calculate values) in the main window when the user edits the content of the text box in the user control, in the item template, in the list box. Question is - how to propagate that event up to the model? The user control is bound to a business object and I can see the value being changed there ok (INotifyPropertyChanged is implemented in the BO), but, how to get that event up to the model (as opposed to the code-behind)? Any examples or pointers most welcome!
jas