WPF 图像交叉淡入淡出 c#
本文关键字:淡出 淡入 图像 WPF | 更新日期: 2023-09-27 18:32:36
我有一个图像列表在我的控件中
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;
有谁知道我可以交叉淡入淡出图像的方法,以便在交换它们时看起来更好?
布局中可以有两个重叠的Image
控件,并使用情节提要将它们淡入/淡出。然后,您可以将图像加载到隐藏的Image
控件中,完成后,将其淡入并退出另一个。这种情况一直持续下去...