9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
920Value = value; 929Value = value; 939Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1591Value = value; 1600Value = value; 1655Value = (Point)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
939Value = value; 948Value = value; 960Value = value;
13 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
921return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
979return Value; 983return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1651return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
623return Value; 627return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Point prevKeyValue = _keyFrames[index - 1].Value; 938Point currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
994return Value; 1000return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, splineProgress);
PresentationFramework (1)
System\Windows\VisualStateManager.cs (1)
652return keyFrame.Value;