public static void CuxTransformAnimation <T>(FrameworkElement Item, DependencyProperty dp, double FromValue, double ToValue, double Second, Action OnCompleted, SetExtentAnimationTimelineDelegate SetExtentValue) where T : Transform, new()
        {
            T Transform = CuxExtentCommon.GetRTInstance <T>(Item);

            if (Transform != null)
            {
                CuxAnimation.CuxDoubleAnimation(Transform, dp, FromValue, ToValue, Second, OnCompleted, 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 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 ToValue, double Second)
 {
     CuxAnimation.CuxThicknessAnimation(Item, dp, ToValue, Second, null, null);
 }
 public static void CuxDoubleAnimation(IAnimatable Item, DependencyProperty dp, double FromValue, double ToValue, double Second)
 {
     CuxAnimation.CuxDoubleAnimation(Item, dp, FromValue, ToValue, Second, null, null);
 }
 public static void CuxDoubleAnimation(IAnimatable Item, DependencyProperty dp, double ToValue, double Second, Action OnCompleted)
 {
     CuxAnimation.CuxDoubleAnimation(Item, dp, ToValue, Second, OnCompleted, null);
 }
 public static void CuxTransformAnimation <T>(FrameworkElement Item, DependencyProperty dp, double FromValue, double ToValue, double Second, Action OnCompleted) where T : Transform, new()
 {
     CuxAnimation.CuxTransformAnimation <T>(Item, dp, FromValue, ToValue, Second, OnCompleted, null);
 }
 public static void CuxTransformAnimation <T>(FrameworkElement Item, DependencyProperty dp, double FromValue, double ToValue, double Second, SetExtentAnimationTimelineDelegate SetExtentValue) where T : Transform, new()
 {
     CuxAnimation.CuxTransformAnimation <T>(Item, dp, FromValue, ToValue, Second, null, SetExtentValue);
 }