I want to implement mouse over event on a image in WPF. But it seems to be there is no event for that in WPF. How can I implement that. I tried with a trigger . But only the property is available.
<Image.Triggers>
<Trigger Property="IsMouseOver" Value="True">
</Trigger>
</Image.Triggers>
But the problem is I want to call a method from c# code within the mouseover event. How can I achieve this.
Really apprieciate your help.
Thankx.