テキストブロックのダブルクリックイベント(または、可能であれば画像-いずれにしても、そのユーザーコントロール)をViewModelのコマンドにバインドする必要があります。
TextBlock.InputBindingsがコマンドに正しくバインドされていないようです。
Marlon Grechの 添付コマンドの動作 を試してください。
<Button>
<Button.InputBindings>
<MouseBinding Gesture="LeftDoubleClick" Command="YourCommand" />
</Button.InputBindings>
</Button>
http://thejoyofcode.com/Invoking_a_Command_on_a_Double_Click_or_other_Mouse_Gesture.aspx
簡単です。MVVMの方法を使用しましょう。ここでは、学習が容易で強力なMVVM Lightを使用しています。
1. xmlns宣言に次の行を入力します。
xmlns:i="http://schemas.Microsoft.com/expression/2010/interactivity"
xmlns:GalaSoft_MvvmLight_Command="clr-namespace:GalaSoft.MvvmLight.Command;
Assembly=GalaSoft.MvvmLight.Extras.WPF4"
2.次のようにテキストブロックを定義します:
<textBlock text="Text with event">
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseDoubleClick">
<GalaSoft_MvvmLight_Command:EventToCommand
Command="{Binding Edit_Command}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</textBlock>
3.次に、ビューモデルにコマンドコードを記述します!!!
ViewModel1.cs
Public RelayCommand Edit_Command
{
get;
private set;
}
Public ViewModel1()
{
Edit_Command=new RelayCommand(()=>execute_me());
}
public void execute_me()
{
//write your code here
}
Real ERPアプリケーションで使用したので、それがあなたのために働くことを願っています
リストビューのMouseDoubleClickイベントをViewModelのコマンドにバインドする必要があるという同様の問題もありました。
私が思いついた最も簡単な解決策は、目的のコマンドバインディングを持つダミーボタンを配置し、MouseDoubleClickイベントのイベントハンドラーでボタンのコマンドのExecuteメソッドを呼び出すことです。
.xaml
<Button Visibility="Collapsed" Name="doubleClickButton" Command="{Binding Path=CommandShowCompanyCards}"></Button>
<ListView MouseDoubleClick="ListView_MouseDoubleClick" SelectedItem="{Binding Path=SelectedCompany, UpdateSourceTrigger=PropertyChanged}" BorderThickness="0" Margin="0,10,0,0" ItemsSource="{Binding Path=CompanyList, UpdateSourceTrigger=PropertyChanged}" Grid.Row="1" HorizontalContentAlignment="Stretch" >
分離コード
private void ListView_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
doubleClickButton.Command.Execute(null);
}
それは簡単ではありませんが、それは本当に簡単であり、動作します。