CSharp examples for Windows.UI.Xaml.Media.Animation:Animation
Cancel any animations that are running on the specified dependency property.
// http://www.codeproject.com/info/cpol10.aspx using System.Windows.Media.Animation; using System.Windows; using System;//from w w w . j av a2 s. c om public class Main{ /// <summary> /// Cancel any animations that are running on the specified dependency property. /// </summary> public static void CancelAnimation(UIElement animatableElement, DependencyProperty dependencyProperty) { animatableElement.BeginAnimation(dependencyProperty, null); } }