I have an image with a shadow property defined as follows.
<Border Background="Black" Margin="42,180,368,38">
<Border.Effect>
<DropShadowEffect Color="Aqua" Opacity="0.5"/>
</Border.Effect>
<Image Height="92" Width="97" Source="/Images/image_search.png" />
</Border>
This produces image with a border. OK. But, I need the border to be shown only on image-hovering? How do I do that ? Also, how to blur the image on-hovering upon it?
Many Thanks.