New to Telerik UI for WPFStart a free 30-day trial

This class is a concrete implementation of a transition effect that makes zoom and slide transition.

Definition

Namespace:Telerik.Windows.Controls.TransitionEffects

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public class RollTransition : ShaderTransitionProvider

Inheritance: objectTransitionProviderShaderTransitionProviderRollTransition

Inherited Members ShaderTransitionProvider.CreateFallBackTransition()ShaderTransitionProvider.CreateTransition(TransitionContext)ShaderTransitionProvider.LayoutAnimation

Constructors

Initializes a new instance of the RollTransition class.

C#
public RollTransition()

Properties

Gets or sets a value, describing the the power of the interpolation function of the edges of the roll (2 to 10). This is a DependencyProperty.

C#
public double InterpolationFunction { get; set; }

Gets or sets a value, describing the transition direction. This is a DependencyProperty.

C#
public bool IsRollOut { get; set; }
Property Value:

True if the animation is rolling in, false otherwise.

Gets or sets a value, describing the direction of the transition (top-to-bottom or bottom-to-top). This is a DependencyProperty.

C#
public bool IsTopToBottom { get; set; }

Gets or sets a value, describing the the intensity of the light over the roll (0 to 1). This is a DependencyProperty.

C#
public double LightIntensity { get; set; }

Orientation

Orientation

Gets or sets a value, describing the orientation of the transition. This is a DependencyProperty.

C#
public Orientation Orientation { get; set; }

Gets or sets a value, describing the the width of the roll, depending on its size (0 to 1). This is a DependencyProperty.

C#
public double RelativeRollWidth { get; set; }

Gets or sets a value, describing the the size of the roll (0 to 1). This is a DependencyProperty.

C#
public double RollSize { get; set; }

Methods

Creates a new TransitionEffect with the current settings.

C#
protected override TransitionEffect CreateTransitionEffect()
Returns:

TransitionEffect

A new instance of the TransitionEffect class.

Overrides: ShaderTransitionProvider.CreateTransitionEffect()