2

如何让 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/

4

1 回答 1

1

我用它来完成我的gifs工作:http ://www.vcskicks.com/csharp_animated_gif.php

[编辑]

我找到了一些东西WPFhttp ://wpfanimatedgif.codeplex.com/

但是我没有测试!

于 2012-10-05T09:43:04.923 回答