public static void CreateLinearAnimation(IAnimatable Item, DependencyProperty dp, double FromValue, double ToValue, double SecondTime, SetExtentAnimationTimelineDelegate SetExtentValue) { CuxDoubleAnimationUsingKeyFrames.CreateLinearAnimation(Item, dp, FromValue, ToValue, SecondTime, null, SetExtentValue); }
public static void CreateLinearAnimation(IAnimatable Item, DependencyProperty dp, double FromValue, double ToValue, double SecondTime, Action OnCompleted) { CuxDoubleAnimationUsingKeyFrames.CreateLinearAnimation(Item, dp, FromValue, ToValue, SecondTime, OnCompleted, null); }
public static void CreateLinearAnimation(IAnimatable Item, DependencyProperty dp, double ToValue, double SecondTime) { CuxDoubleAnimationUsingKeyFrames.CreateLinearAnimation(Item, dp, ToValue, SecondTime, null, null); }