DoubleAnimation with Step
For having step working in double animation use public class DoubleAnimationStep : DoubleAnimationUsingKeyFrames { #region static static DoubleAnimationStep() { DurationProperty.OverrideMetadata(typeof(DoubleAnimationStep), new FrameworkPropertyMetadata(new Duration(), (ss,ee) => (ss as DoubleAnimationStep).Update())); } #endregion #region Step (DP SHORT) public int Step { get { return (int)GetValue(StepProperty); } set { SetValue(StepProperty, value); } } public static readonly DependencyProperty StepProperty = […]
