Class
RadMoveAndFadeAnimation

Provides a pre-defined move and fade animation group.

Definition

Namespace:Telerik.Core

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class RadMoveAndFadeAnimation : RadAnimationGroup

Inheritance: objectRadAnimationRadAnimationGroupRadMoveAndFadeAnimation

Inherited Members RadAnimationGroup.CreateOpposite()RadAnimationGroup.ApplyInitialValues(UIElement)RadAnimationGroup.ApplyAnimationValues(PlayAnimationInfo)RadAnimationGroup.CloneCore()RadAnimationGroup.CreateStoryboardOverride(UIElement)RadAnimationGroup.UpdateAnimationOverride(AnimationContext)RadAnimationGroup.ChildrenRadAnimation.EmptyRadAnimation.Clone()RadAnimation.OnStarted(PlayAnimationInfo)RadAnimation.CopyAnimationValues(PlayAnimationInfo)RadAnimation.OnEnded(PlayAnimationInfo)RadAnimation.OnEnded()RadAnimation.EasingRadAnimation.DurationRadAnimation.InitialDelayRadAnimation.AnimationNameRadAnimation.FillBehaviorRadAnimation.SpeedRatioRadAnimation.AutoReverseRadAnimation.RepeatBehaviorRadAnimation.AnimationOriginRadAnimation.Ended

Constructors

RadMoveAndFadeAnimation()

Initializes a new instance of the RadMoveAndFadeAnimation class.

Declaration

cs-api-definition
public RadMoveAndFadeAnimation()

Properties

FadeAnimation

Gets the start position for the move animation. If not set, the current element TranslateTransform is used if it exists, otherwise the empty point (0, 0) is used.

Declaration

cs-api-definition
public RadFadeAnimation FadeAnimation { get; }

Property Value

RadFadeAnimation

MoveAnimation

Gets the end position for the move animation. If not set, the current element TranslateTransform is used if it exists, otherwise the empty point (0, 0) is used.

Declaration

cs-api-definition
public RadMoveAnimation MoveAnimation { get; }

Property Value

RadMoveAnimation

Methods

ClearAnimation(UIElement)

Removes any property modifications, applied to the specified element by this instance.

Declaration

cs-api-definition
public override void ClearAnimation(UIElement target)

Parameters

target

UIElement

The element which property values are to be cleared.

Overrides RadAnimationGroup.ClearAnimation(UIElement)

Remarks

It is assumed that the element has been previously animated by this animation.

CreateFadeAnimation()

Called in the constructor to create a default fade animation.

Declaration

cs-api-definition
protected virtual RadFadeAnimation CreateFadeAnimation()

Returns

RadFadeAnimation

A new instance of RadFadeAnimation.

CreateMoveAnimation()

Called in the constructor to create a default move animation.

Declaration

cs-api-definition
protected virtual RadMoveAnimation CreateMoveAnimation()

Returns

RadMoveAnimation

A new instance of RadMoveAnimation.