This example will create a SlideTransition and apply it to a Leadtools.Controls.ImageViewer control.
using Leadtools.Windows.Media.Transitions;using Leadtools.Windows.Controls;public void SlideTransition_SlideTransition(ImageViewer viewer){SlideTransition slideTransition = new SlideTransition();slideTransition.TransitionType = SlideTransitionType.BottomToTop;slideTransition.AutoReverse = true;slideTransition.Fill = new ImageBrush(new BitmapImage(new Uri(System.IO.Path.Combine(LEAD_VARS.ImagesDir, "image2.jpg"))));slideTransition.Duration = new Duration(TimeSpan.FromSeconds(1));slideTransition.FillBehavior = System.Windows.Media.Animation.FillBehavior.HoldEnd;slideTransition.Grain = 10;viewer.Transition = slideTransition;// Begin the transitionslideTransition.Begin();}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";}