I am no sure what I am doing wrong to load a gif in the window. An animated gif would be best if possible even if it only looped once (don't need to control it).
// WPF
<Image Name="ImageViewer1" Height="100" Width="100" Margin="340,178,0,0" />
// Load Gif
public MainWindow()
{
InitializeComponent();
ImageViewer1.Source = new Image(@"giphy.gif");
}