I'm looking for a solution of adding modifiers to EventToCommand usign mvvm light. What I want to achieve is binding a command to let's say mouseEnter but only if the ctrl is pressed. Below I have just a mouseenter command.
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseEnter">
<cmd:EventToCommand Command="{Binding TestCmd}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
Any idea how to add keyboard modifier to it?