第一种方法:使用winform插件
<WindowsFormsHost xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" Grid.Column="0" >
<wf:PictureBox ImageLocation="load1.gif" SizeMode="StretchImage"/>
</WindowsFormsHost>
第二种方法:使用wpf自身的动态图
xaml 标签
<MediaElement LoadedBehavior="Play" Stretch="Fill" Source="load1.gif" MediaEnded="MediaElement_MediaEnded" Grid.Column="1" />
必须追加事件
private void MediaElement_MediaEnded(object sender, RoutedEventArgs e)
{
((MediaElement)sender).Position = ((MediaElement)sender).Position.Add(TimeSpan.FromMilliseconds(1));
}