我有一个我控制的图像列表
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;
有谁知道我可以交叉淡化图像以便交换它们时看起来更好的方法?