UIElement.ApplyAnimationClock Method (DependencyProperty, AnimationClock)
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)
public final void ApplyAnimationClock ( DependencyProperty dp, AnimationClock clock )
public final function ApplyAnimationClock ( dp : DependencyProperty, clock : AnimationClock )
You cannot use methods in XAML.
Parameters
- dp
The identifier for the property to animate.
- clock
The animation clock that controls and declares the animation.
To remove an animation from a property, specify the identifier for that property as dp and specify clock as a null reference (Nothing in Visual Basic). 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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.