Rotate3DTransitionStart Method

Starts the animation.

Definition

Namespace: Avalonia.Animation
Assembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public override Task Start(
	Visual? from,
	Visual? to,
	bool forward,
	CancellationToken cancellationToken
)

Parameters

from  Visual
The control that is being transitioned away from. May be null.
to  Visual
The control that is being transitioned to. May be null.
forward  Boolean
If the animation is bidirectional, controls the direction of the animation.
cancellationToken  CancellationToken
Animation cancellation.

Return Value

Task
A Task that tracks the progress of the animation.

Implements

IPageTransitionStart(Visual, Visual, Boolean, CancellationToken)

See Also