<Popup 
    Name="loadingAnimation"
    PlacementTarget="{Binding ElementName=m_mainWindow}"
    Placement="Center"
    StaysOpen="True"
    IsOpen="True"
    Height="200"
    Width="200">
    <MediaElement 
        Height="200"
        Width="200"
        Margin="-100,-72,0,0"
        HorizontalAlignment="Left"
        VerticalAlignment="Top"
        Source="/Images/Loading.gif" 
        LoadedBehavior="Play"/>
</Popup>
The code dose show the popup area in black, but doesn't play gif. If I set AllowsTransparency="True", I cannot see anything. How to display gif in a popup?