画像に名前付きスタイルを作成し、そのスタイルでは、MouseDownイベントのEventBindingをResourceDictionaryのコードビハインドのハンドラーに設定しました。これはうまく機能しました。画像を次のように使用する場合:
<Style TargetType="{x:Type Image}" x:Key="ImageStyle">
<EventSetter Event="MouseDown" Handler="Image_MouseDown"/>
</Style>
<!---->
<Image Style="{StaticResource ImageStyle}">
<Image.InputBindings>
<MouseBinding Command="Save" MouseAction="LeftClick"/>
</Image.InputBindings>
</Image>
これにより、スタイル設定されたMouseDownイベントバインディングが機能しなくなります。