Class BeginAnimation
- Namespace
- AlohaKit.Animations
- Assembly
- AlohaKit.Animations.dll
The BeginAnimation class defines a trigger action for starting an animation on a target visual element when the trigger is activated.
[ContentProperty("Animation")]
public class BeginAnimation : TriggerAction<VisualElement>
- Inheritance
-
BeginAnimation
- Inherited Members
Properties
Animation
Gets or sets the animation to be executed when the trigger action is invoked.
public AnimationBase Animation { get; set; }
Property Value
Methods
Invoke(VisualElement)
Executes the specified animation on the target visual element.
protected override void Invoke(VisualElement sender)
Parameters
senderVisualElementThe visual element on which the animation is applied.