I have this Image:
I want the image to have a border If I do:
<Border BorderThickness="1" BorderBrush="Black" HorizontalAlignment="Right" Width="22" VerticalAlignment="Center">
<Image Source="/<AppName>;component/Images/Background/Achtergrond_Arrow.png" HorizontalAlignment="Right" Width="22" >
<Image.Effect>
<DropShadowEffect Color="#FF868686" Direction="0" ShadowDepth="0" BlurRadius="10" />
</Image.Effect>
</Image>
</Border>
it gives a Square border, not following the arrow itself.
Does anybody have any idea on how to fix this??