DataGrid
そのイベントを処理する必要があります。ViewModel
で処理する必要があり、単体テストを実行できるビジネス ロジックを実装する必要があります。
でイベントを発生させて処理できますViewModel
か? この場合、単体テストの方法は?
System.Windows.Interactivity または MvvmLight からEventTriggerを使用できます。
<DataGrid x:Name="myProtokollList">
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseDoubleClick">
<i:InvokeCommandAction Command="{Binding Path=OpenCommand}" CommandParameter="{Binding ElementName=myProtokollList, Path=SelectedItem.OriginalSatzX}"/>
</i:EventTrigger>
</i:Interaction.Triggers>