WPF图像源gif动画

时间:2012-10-05 09:41:52

标签: c# wpf

如何动画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/

1 个答案:

答案 0 :(得分:1)

我用这个来gifs工作:http://www.vcskicks.com/csharp_animated_gif.php

<强> [编辑]

我找到WPF的内容:http://wpfanimatedgif.codeplex.com/

但我没有测试过它!