public static void CuxThicknessAnimation(IAnimatable Item, DependencyProperty dp, Thickness FromValue, Thickness ToValue, double Second, SetExtentAnimationTimelineDelegate SetExtentValue)
 {
     CuxAnimation.CuxThicknessAnimation(Item, dp, FromValue, ToValue, Second, null, SetExtentValue);
 }
 public static void CuxThicknessAnimation(IAnimatable Item, DependencyProperty dp, Thickness FromValue, Thickness ToValue, double Second, Action OnCompleted)
 {
     CuxAnimation.CuxThicknessAnimation(Item, dp, FromValue, ToValue, Second, OnCompleted, null);
 }
 public static void CuxThicknessAnimation(IAnimatable Item, DependencyProperty dp, Thickness ToValue, double Second)
 {
     CuxAnimation.CuxThicknessAnimation(Item, dp, ToValue, Second, null, null);
 }