Пример #1
0
 public static void CreateSplineAnimation(IAnimatable Item, DependencyProperty dp, Thickness FromValue, Thickness ToValue, double SecondTime, SetExtentAnimationTimelineDelegate SetExtentValue)
 {
     CuxThicknessAnimationUsingKeyFrames.CreateSplineAnimation(Item, dp, FromValue, ToValue, SecondTime, null, SetExtentValue);
 }
Пример #2
0
 public static void CreateSplineAnimation(IAnimatable Item, DependencyProperty dp, Thickness FromValue, Thickness ToValue, double SecondTime, Action OnCompleted)
 {
     CuxThicknessAnimationUsingKeyFrames.CreateSplineAnimation(Item, dp, FromValue, ToValue, SecondTime, OnCompleted, null);
 }
Пример #3
0
 public static void CreateSplineAnimation(IAnimatable Item, DependencyProperty dp, Thickness ToValue, double SecondTime)
 {
     CuxThicknessAnimationUsingKeyFrames.CreateSplineAnimation(Item, dp, ToValue, SecondTime, null, null);
 }