Table of Contents

Class StoryBoard

Namespace
AlohaKit.Animations
Assembly
AlohaKit.Animations.dll

Represents a storyboard that orchestrates a sequence of animations on a target element.

[ContentProperty("Animations")]
public class StoryBoard : AnimationBase, INotifyPropertyChanged
Inheritance
StoryBoard
Implements
Inherited Members

Constructors

StoryBoard()

Initializes a new instance of the StoryBoard class with an empty list of animations.

public StoryBoard()

StoryBoard(List<AnimationBase>)

Initializes a new instance of the StoryBoard class with a specified list of animations.

public StoryBoard(List<AnimationBase> animations)

Parameters

animations List<AnimationBase>

A list of animations to be managed by the storyboard.

Properties

Animations

Gets the list of animations managed by the storyboard.

public List<AnimationBase> Animations { get; }

Property Value

List<AnimationBase>

Methods

BeginAnimation()

protected override Task BeginAnimation()

Returns

Task