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);
 }