Class AnimationGroup
Represents composite animation, used for declaratively creating composite animations.
Namespace: Telerik.Windows.Controls.Animation
Assembly: Telerik.Windows.Controls.dll
Syntax
public class AnimationGroup : RadAnimation
Constructors
AnimationGroup()
Declaration
public AnimationGroup()
Properties
Children
Gets a list of the children animation objects of this composite animation.
Declaration
public IList Children { get; }
Property Value
System.Collections.IList
|
Methods
CreateAnimation(FrameworkElement)
Calls CreateAnimation(FrameworkElement) for each of control in Children collection.
Declaration
public override Storyboard CreateAnimation(FrameworkElement control)
Parameters
System.Windows.FrameworkElement
control
The control for which the animation is needed. |
Returns
System.Windows.Media.Animation.Storyboard
The newly created animation. |
Overrides
UpdateAnimation(FrameworkElement, Storyboard, Object[])
Updates each child animation of storyboard
using according
animation for each child control in Children.
Declaration
public override void UpdateAnimation(FrameworkElement control, Storyboard storyboard, params object[] args)
Parameters
System.Windows.FrameworkElement
control
|
System.Windows.Media.Animation.Storyboard
storyboard
|
System.Object[]
args
|