Example #1
0
 public static void CreateSplineAnimation(IAnimatable Item, DependencyProperty dp, double FromValue, double ToValue, double SecondTime, SetExtentAnimationTimelineDelegate SetExtentValue)
 {
     CuxDoubleAnimationUsingKeyFrames.CreateSplineAnimation(Item, dp, FromValue, ToValue, SecondTime, null, SetExtentValue);
 }
Example #2
0
 public static void CreateSplineAnimation(IAnimatable Item, DependencyProperty dp, double FromValue, double ToValue, double SecondTime, Action OnCompleted)
 {
     CuxDoubleAnimationUsingKeyFrames.CreateSplineAnimation(Item, dp, FromValue, ToValue, SecondTime, OnCompleted, null);
 }
Example #3
0
 public static void CreateSplineAnimation(IAnimatable Item, DependencyProperty dp, double ToValue, double SecondTime)
 {
     CuxDoubleAnimationUsingKeyFrames.CreateSplineAnimation(Item, dp, ToValue, SecondTime, null, null);
 }