C# Class Controls.DataVisualization.Toolkit.StoryboardQueue

Represents a storyboard queue that plays storyboards in sequence.
Datei anzeigen Open project: xyzzer/WinRTXamlToolkit

Public Methods

Method Description
Enqueue ( Storyboard storyBoard, EventHandler completedAction ) : void

Accepts a new storyboard to play in sequence.

Private Methods

Method Description
Dequeue ( ) : void

Removes the next storyboard in the queue and plays it.

Method Details

Enqueue() public method

Accepts a new storyboard to play in sequence.
public Enqueue ( Storyboard storyBoard, EventHandler completedAction ) : void
storyBoard Windows.UI.Xaml.Media.Animation.Storyboard The storyboard to play.
completedAction EventHandler An action to execute when the /// storyboard completes.
return void