コード例 #1
0
        public static void RTScaleXAnimation(FrameworkElement Item, double FromValue, double ToValue, double Second, Action OnCompleted, SetExtentAnimationTimelineDelegate SetExtentValue)
        {
            DoubleAnimation Ani = new DoubleAnimation(FromValue, ToValue, new Duration(TimeSpan.FromSeconds(Second)), FillBehavior.Stop);

            CuxAnimation1.RTScaleXAnimation(Item, Ani, OnCompleted, SetExtentValue);
        }
コード例 #2
0
 public static void RTScaleXAnimation(FrameworkElement Item, double FromValue, double ToValue, double Second, Action OnCompleted)
 {
     CuxAnimation1.RTScaleXAnimation(Item, FromValue, ToValue, Second, OnCompleted, DefaultSetExtentValue);
 }