TransitionType Property

Summary
Gets or sets the type of SlideTransition.
Syntax
C#
C++/CLI
public SlideTransitionType TransitionType { get; set; } 
public: 
property SlideTransitionType TransitionType { 
   SlideTransitionType get(); 
   void set (    SlideTransitionType ); 
} 

Property Value

An SlideTransitionType enumeration value that specifies the behavior of the SlideTransition.

Example
C#
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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.1.23
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Windows.Media.Transitions Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.