
I am using the DoubleEditBox and I would like to fire a command when the user clicks on the spinner or press the EnterKey down. These could be possibly two different commmands.
I tried to associate the command to the ValueChanged event after setting PartValueCommitTriggers="SpinnerChangeOrEnterKeyDown"
the but that is not good for me because the value can change in other ways, in different parts of the application, in which case I do not want to fire the command at all.
Is there a way to achieve that?