UIElement.ApplyAnimationClock Method (DependencyProperty, AnimationClock)
Applies an animation to a specified dependency property on this element. Any existing animations are stopped and replaced with the new animation.
Assembly: PresentationCore (in PresentationCore.dll)
'Declaration Public Sub ApplyAnimationClock ( _ dp As DependencyProperty, _ clock As AnimationClock _ ) 'Usage Dim instance As UIElement Dim dp As DependencyProperty Dim clock As AnimationClock instance.ApplyAnimationClock(dp, clock)
You cannot use methods in XAML.
Parameters
- dp
- Type: System.Windows.DependencyProperty
The identifier for the property to animate.
- clock
- Type: System.Windows.Media.Animation.AnimationClock
The animation clock that controls and declares the animation.
Implements
IAnimatable.ApplyAnimationClock(DependencyProperty, AnimationClock)To remove an animation from a property, specify the identifier for that property as dp and specify clock as Nothing. 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.
In the following example, a Rectangle myAnimatedRectangle has a particular timing animation applied to it by calling ApplyAnimationClock .
// Create a DoubleAnimation to // animate its width. DoubleAnimation widthAnimation = new DoubleAnimation( 100, 500, new Duration(TimeSpan.FromSeconds(5))); //widthAnimation.RepeatBehavior = RepeatBehavior.Forever; widthAnimation.AutoReverse = true; widthAnimation.SpeedRatio = 0.5; // Create a clock from the animation. myControllableClock = widthAnimation.CreateClock(); // Apply the clock to the rectangle's Width property. animatedRectangle.ApplyAnimationClock( Rectangle.WidthProperty, myControllableClock);
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.