0

我有一个我控制的图像列表

public List<BitmapImage> Images { get; set; }

我正在使用计时器来更改图像。

        Image imgpanel = new System.Windows.Controls.Image();
        imgpanel.Source = image;
        imgpanel.Stretch = maintainAspectRatio ? Stretch.Uniform : Stretch.Fill;
        imgpanel.StretchDirection = StretchDirection.Both;

有谁知道我可以交叉淡化图像以便交换它们时看起来更好的方法?

4

1 回答 1

1

您可以在布局中有两个重叠Image的控件,并使用故事板将它们淡入/淡出。然后您可以将图像加载到隐藏Image控件中,完成后,将其淡入并淡出。这种情况一直在...

于 2012-04-30T09:56:57.917 回答