SlideTransition Constructor
         
         
         
	Summary
Initializes a new instance of the 
SlideTransition class.
 
	Syntax
public: 
SlideTransition(); 
 
	Example
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 transition 
   slideTransition.Begin(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
}