Exemple #1
0
 public static void CreateLinearAnimation(FrameworkElement Item, DependencyProperty dp, double FromValue, double ToValue, double SecondTime, Action OnCompleted)
 {
     CuxTransformAnimationUsingKeyFrames <T> .CreateLinearAnimation(Item, dp, FromValue, ToValue, SecondTime, OnCompleted, null);
 }
Exemple #2
0
 public static void CreateLinearAnimation(FrameworkElement Item, DependencyProperty dp, double FromValue, double ToValue, double SecondTime, SetExtentAnimationTimelineDelegate SetExtentValue)
 {
     CuxTransformAnimationUsingKeyFrames <T> .CreateLinearAnimation(Item, dp, FromValue, ToValue, SecondTime, null, SetExtentValue);
 }