ClrTransition
Class
A class that lays infrastructure for CLR run transitions. Animations are created by overriding the OnProgressChanged method.
Definition
Namespace:Telerik.Windows.Controls.TransitionControl
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public abstract class ClrTransition : Transition
Inheritance: objectTransitionClrTransition
Derived Classes:
Inherited Members
Constructors
C#
protected ClrTransition()
Fields
ProgressProperty
DependencyProperty
Identifies the Progress property. When its value is 0.0 the effect shows the initial state of the transition, when 1.0 - the final state.
C#
public static readonly DependencyProperty ProgressProperty
Properties
Methods
Stop the animation and clean up the objects modified in OnPlayAnimation.
C#
protected override void AnimationCompletedOverride()
Overrides:
This method is called when the progress of the transition is changed. When overridden it should take care of moving the transition.
Prepare the objects and begin a transition animation.
C#
protected override void StartAnimationOverride()
Overrides: