How can I can an event to fire similar to selectedindexchanged with the datagridcombobox column type?
Asked
Active
Viewed 969 times
1 Answers
0
I would think that the recommended approach in this case is not to worry about the UI element firing the changed event, but rather listening for your ViewModel's change event which will be fired when the combo box changes the bound value.

Drew Marsh
- 33,111
- 3
- 82
- 100
-
It would depend completely on your own ViewModel, but essentially you'd be listening for the INotifyPropertyChange::PropertyChanged event. – Drew Marsh Nov 12 '09 at 22:04