I've an EventTrigger
:
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseDoubleClick">
<i:InvokeCommandAction Command="{Binding Modify}"
CommandParameter="{Binding SelectedItem, ElementName=lv}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
and it invokes the command on MouseDoubleClick
, doesn't matter whether it's Left or Right! I want it to Invoke the command only on Left MouseDoubleClick. I've tried by chaning the EventName
as LeftMouseDoubleClick
and LeftDoubleClick
but those don't work! Under the Event Section of Properties Inspector It looks like there're two MouseDoubleClick
and PreviewMouseDoubleClick
BUT nothing for LeftMouseDoubleClick or RighMouseDoubleClick!
Is there any such Event? If so, what's the name? If there's none, how such case is handled?