ZoomTransition Constructor

Summary
Gets or sets the type of ZoomTransition.
Syntax
C#
C++/CLI
public ZoomTransition() 
public: 
ZoomTransition(); 
Example
C#
using Leadtools.Windows.Media.Transitions; 
using Leadtools.Windows.Controls; 
 
 
public void ZoomTransition_ZoomTransition(ImageViewer viewer) 
{ 
   ZoomTransition zoomTransition = new ZoomTransition(); 
   zoomTransition.TransitionType = ZoomTransitionType.FromCenter; 
 
   zoomTransition.AutoReverse = true; 
   zoomTransition.Fill = new ImageBrush(new BitmapImage(new Uri(System.IO.Path.Combine(LEAD_VARS.ImagesDir, "image2.jpg")))); 
   zoomTransition.Duration = new Duration(TimeSpan.FromSeconds(1)); 
   zoomTransition.FillBehavior = System.Windows.Media.Animation.FillBehavior.HoldEnd; 
   zoomTransition.Grain = 10; 
 
   viewer.Transition = zoomTransition; 
 
   // Begin the transition 
   zoomTransition.Begin(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 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.