Core\CSharp\System\Windows\Media\Animation\Generated\SingleAnimation.cs (32)
45private Single[] _keyValues;
60Type typeofProp = typeof(Single?);
69new PropertyMetadata((Single?)null, propCallback),
76new PropertyMetadata((Single?)null, propCallback),
83new PropertyMetadata((Single?)null, propCallback),
107public SingleAnimation(Single toValue, Duration duration)
119public SingleAnimation(Single toValue, Duration duration, FillBehavior fillBehavior)
132public SingleAnimation(Single fromValue, Single toValue, Duration duration)
145public SingleAnimation(Single fromValue, Single toValue, Duration duration, FillBehavior fillBehavior)
218protected override Single GetCurrentValueCore(Single defaultOriginValue, Single defaultDestinationValue, AnimationClock animationClock)
235Single from = new Single();
236Single to = new Single();
237Single accumulated = new Single();
238Single foundation = new Single();
352Single accumulator = AnimatedTypeHelpers.SubtractSingle(to, from);
377_keyValues = new Single[2];
384_keyValues = new Single[2];
391_keyValues = new Single[1];
398_keyValues = new Single[1];
404_keyValues = new Single[1];
425Single? typedValue = (Single?)value;
445public Single? From
449return (Single?)GetValue(FromProperty);
465public Single? To
469return (Single?)GetValue(ToProperty);
485public Single? By
489return (Single?)GetValue(ByProperty);