示例#1
0
        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);
            }
        }
示例#2
0
 public static void CuxDoubleAnimation(IAnimatable Item, DependencyProperty dp, double FromValue, double ToValue, double Second, Action OnCompleted)
 {
     CuxAnimation.CuxDoubleAnimation(Item, dp, FromValue, ToValue, Second, OnCompleted, null);
 }
示例#3
0
 public static void CuxDoubleAnimation(IAnimatable Item, DependencyProperty dp, double FromValue, double ToValue, double Second, SetExtentAnimationTimelineDelegate SetExtentValue)
 {
     CuxAnimation.CuxDoubleAnimation(Item, dp, FromValue, ToValue, Second, null, SetExtentValue);
 }
示例#4
0
 public static void CuxDoubleAnimation(IAnimatable Item, DependencyProperty dp, double ToValue, double Second)
 {
     CuxAnimation.CuxDoubleAnimation(Item, dp, ToValue, Second, null, null);
 }