如何动画GIF以使用下面的代码?问题是图像会根据几个不同的图像而改变。
WPF:
<Image Source="{Binding ElementName=L, Path=Image}" Height="400" Width="600" Stretch="None" />
代码背后: public readonly DependencyProperty ImageProperty;
public ImageSource ImageStatus
{
get { return (ImageSource)GetValue(ImageProperty); }
set { SetValue(ImageProperty, value); }
}
Image = new BitmapImage(new Uri("/L;component/Images/test.gif", UriKind.Relative));
编辑:
http://eladm.wordpress.com/2009/04/02/animated-gif-support-behavior/
答案 0 :(得分:1)
我用这个来gifs
工作:http://www.vcskicks.com/csharp_animated_gif.php
<强> [编辑] 强>
我找到WPF
的内容:http://wpfanimatedgif.codeplex.com/
但我没有测试过它!