|
If you want to bind to events for other controls that wire up to commands in your viewmodel then you can easily accomplish with blend (ie triggers/behaviors)
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseLeftButtonDown">
<i:InvokeCommandAction Command="{Binding MyCommand}" CommandParameter="{Binding}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
|