I have a RoutedUICommand that can be bind to multiple controls in xaml. I have a few Button controls and an image which should be bound to this Command. It's very simple to bind a command with buttons like
<Button Name="btnAction1" Command="local:MainWindow.Command1"/>
But I am unable to find a way to bind a mousedown event of image to this command. Is there anything I am missing or there really has no way to do this.