I have a list of images in my control
public List<BitmapImage> Images { get; set; }
I am using a timer to change the images.
Image imgpanel = new System.Windows.Controls.Image();
imgpanel.Source = image;
imgpanel.Stretch = maintainAspectRatio ? Stretch.Uniform : Stretch.Fill;
imgpanel.StretchDirection = StretchDirection.Both;
Does anyone know a way i can crossfade the images so they look better when swapping them ?