4

当我更改幻灯片放映等图像源时,如何实现 FadeIn 然后 FadeOut 图像。我的图像从本地和网络加载,并且数量是可变的。谢谢

4

2 回答 2

13

您可以编写一个扩展方法,通过将其属性设置为 0 来淡出图像Opacity,然后设置该Source属性,最后将不透明度设置为 1。

public static void ChangeSource(
    this Image image, ImageSource source, TimeSpan fadeOutTime, TimeSpan fadeInTime)
{
    var fadeInAnimation = new DoubleAnimation(1d, fadeInTime);

    if (image.Source != null)
    {
        var fadeOutAnimation = new DoubleAnimation(0d, fadeOutTime);

        fadeOutAnimation.Completed += (o, e) =>
        {
            image.Source = source;
            image.BeginAnimation(Image.OpacityProperty, fadeInAnimation);
        };

        image.BeginAnimation(Image.OpacityProperty, fadeOutAnimation);
    }
    else
    {
        image.Opacity = 0d;
        image.Source = source;
        image.BeginAnimation(Image.OpacityProperty, fadeInAnimation);
    }
}
于 2013-10-31T13:44:27.217 回答
0

您可以为此使用 WPF 转换,请在此处查看

于 2013-10-31T13:01:55.357 回答