Exemplo n.º 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);
            }
        }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 4
0
 public static void CuxDoubleAnimation(IAnimatable Item, DependencyProperty dp, double ToValue, double Second)
 {
     CuxAnimation.CuxDoubleAnimation(Item, dp, ToValue, Second, null, null);
 }