I'm using the MediaElement to show gif image as shown below.
<MediaElement x:Name="imgLoadingImage"
MediaEnded="imgLoadingImage_MediaEnded"
UnloadedBehavior="Manual"
Source="file:\loading.GIF"
LoadedBehavior="Play"
Stretch="None"
Visibility="Visible"/>
It works fine but the transparent pixels are shown as black.
Is there anyway we can make it transparent?