标签:ati 通过 ima ade 显示 media https info 程序集
WPF的Image控件不能很好的支持.gif文件。解决办法有如下2种。
<MediaElement Source="file://D:\anim.gif"/>
使用时,注意要使用 “file://”和gif文件的绝对路径。
Winform里面的PictureBox支持播放gif动画。我们需要的就是将winform控件停靠在wpf窗体中。这需要使用WindowsFormsHost。WindowsFormsHost存在于程序集WindowsFormsIntegration.dll的System.Windows.Forms.Integration命名空间。
第一步,添加WindowsFormsIntegration.dll和System.Windows.Forms.dll引用。
然后添加下列命名空间到XAML。
<Window x:Class="WpfApplication2.Window1" xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" xmlns:winForms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
现在可以在wpf中放置PictureBox控件了
<Grid> <wfi:WindowsFormsHost> <winForms:PictureBox x:Name="pictureBoxLoading"> </winForms:PictureBox> </wfi:WindowsFormsHost> </Grid>
在code behind(Window1.xaml.cs),添加到Window_Loaded Event:
private void Window_Loaded(object sender, RoutedEventArgs e) { this.pictureBoxLoading.Image = System.Drawing.Image.FromFile("anim.gif"); ; }
注意:
参考资料:
标签:ati 通过 ima ade 显示 media https info 程序集
原文地址:https://www.cnblogs.com/xinyf/p/9800459.html