views:

235

answers:

1

How can I can an event to fire similar to selectedindexchanged with the datagridcombobox column type?

A: 

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
Is there a code example for this available?
Jim Beam
It would depend completely on your own ViewModel, but essentially you'd be listening for the INotifyPropertyChange::PropertyChanged event.
Drew Marsh