.NET Framework Class Library
ContentElement.ApplyAnimationClock Method (DependencyProperty, AnimationClock, HandoffBehavior)
Applies an animation to a specified dependency property on this element, with the ability to specify what happens if the property already has a running animation.
Assembly: PresentationCore (in PresentationCore.dll)
Syntax
Visual Basic
Public Sub ApplyAnimationClock ( _ dp As DependencyProperty, _ clock As AnimationClock, _ handoffBehavior As HandoffBehavior _ )
C#
public void ApplyAnimationClock( DependencyProperty dp, AnimationClock clock, HandoffBehavior handoffBehavior )
Visual C++
public: virtual void ApplyAnimationClock( DependencyProperty^ dp, AnimationClock^ clock, HandoffBehavior handoffBehavior ) sealed
F#
abstract ApplyAnimationClock : dp:DependencyProperty * clock:AnimationClock * handoffBehavior:HandoffBehavior -> unit override ApplyAnimationClock : dp:DependencyProperty * clock:AnimationClock * handoffBehavior:HandoffBehavior -> unit
Parameters
- dp
- Type: System.Windows.DependencyProperty
The property to animate.
- clock
- Type: System.Windows.Media.Animation.AnimationClock
The animation clock that controls and declares the animation.
- handoffBehavior
- Type: System.Windows.Media.Animation.HandoffBehavior
A value of the enumeration. The default is SnapshotAndReplace, which will stop any existing animation and replace with the new one.
Implements
IAnimatable.ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior)Remarks
To remove an animation from a property, specify the identifier for that property as dp and specify clock as null. This removes the animation and the animated property is set to its base value. However, the originally associated animation clock is not stopped. Any other animations assigned to that clock will continue to run.
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also