1 write to
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleKeyFrameCollection.cs (1)
462this[index] = (DoubleKeyFrame)value;
11 references to
PresentationCore (10)
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (9)
654return _keyFrames[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex]; 675KeyTime keyTime = _keyFrames[index].KeyTime; 759KeyTime keyTime = _keyFrames[index].KeyTime; 831KeyTimeType type = _keyFrames[index].KeyTime.Type; 931if (_keyFrames[index].KeyTime.Type == KeyTimeType.Paced) 954Double prevKeyValue = _keyFrames[index - 1].Value; 958Double currentKeyValue = _keyFrames[index].Value; 975&& _keyFrames[index].KeyTime.Type == KeyTimeType.Paced); 985totalLength += AnimatedTypeHelpers.GetSegmentLengthDouble(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleKeyFrameCollection.cs (1)
458return this[index];
PresentationFramework (1)
src\Framework\System\Windows\VisualStateManager.cs (1)
691DoubleKeyFrame keyFrame = dak.KeyFrames[isEntering ? 0 : dak.KeyFrames.Count - 1];