I wanted to bind an event with ViewModel.
I used
clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity
and i used trigger for the same
<Canvas Grid.Row="2" Grid.Column="2" x:Name="InteractiveCanvas" Style="{StaticResource canvasChartStyle}" ClipToBounds="True" >
<intr:Interaction.Triggers>
<intr:EventTrigger EventName="MouseEnter">
<intr:InvokeCommandAction Command="AppointmentEditing" />
</intr:EventTrigger>
</intr:Interaction.Triggers>
</Canvas>
but I need event arguments to be used. Here am not able to get the same.
In wpf any possiblity is there to bind event and get event arguments ? With out ussing MVVM lite or PRISM.
I just want to get the event arguments