Applies the animations associated with this Storyboard to their targets and initiates them, using the specified HandoffBehavior.
Namespace:
System.Windows.Media.Animation
Assembly:
PresentationFramework (in PresentationFramework.dll)
Visual Basic (Declaration)
Public Sub Begin ( _
containingObject As FrameworkContentElement, _
handoffBehavior As HandoffBehavior, _
isControllable As Boolean _
)
Dim instance As Storyboard
Dim containingObject As FrameworkContentElement
Dim handoffBehavior As HandoffBehavior
Dim isControllable As Boolean
instance.Begin(containingObject, handoffBehavior, _
isControllable)
public void Begin(
FrameworkContentElement containingObject,
HandoffBehavior handoffBehavior,
bool isControllable
)
public:
void Begin(
FrameworkContentElement^ containingObject,
HandoffBehavior handoffBehavior,
bool isControllable
)
public function Begin(
containingObject : FrameworkContentElement,
handoffBehavior : HandoffBehavior,
isControllable : boolean
)
You cannot use methods in XAML.
If the targeted properties are already animated, they are replaced using the specified handoff behavior.
To interactively control this storyboard, you must specify the same containingObject when calling the interactive methods that you used to begin the storyboard
When this method is called, Clock objects are created for the storyboard and any timelines it contains. These clocks are stored with containingObject.
Beginning a storyboard triggers the CurrentStateInvalidated and CurrentGlobalSpeedInvalidated events.
Using the Compose HandoffBehavior
When you apply a Storyboard, AnimationTimeline, or AnimationClock to a property using the Compose HandoffBehavior, any Clock objects previously associated with that property continue to consume system resources; the timing system does not remove these clocks automatically.
To avoid performance issues when you apply a large number of clocks using Compose, you should remove composing clocks from the animated property after they complete. There are several ways to remove a clock.
This is primarily an issue for animations on objects that have a long lifetime. When an object is garbage collected, its clocks are also disconnected and garbage collected.
For more information about clock objects, see Animation and Timing System Overview.
The following example uses a controllable storyboard to animate a TextEffect. The TextEffect is contained within a FrameworkContentElement's name scope.
The next example uses the SnapshotAndReplace HandoffBehavior to animate when the user left-clicks, and the Compose HandoffBehavior when the user right-clicks.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference