9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
919Value = value; 928Value = value; 938Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
1590Value = value; 1599Value = value; 1654Value = (Point)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
933Value = value; 942Value = value; 954Value = value;
13 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
920return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
978return Value; 982return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
1650return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
622return Value; 626return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (4)
621return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 930Point prevKeyValue = _keyFrames[index - 1].Value; 934Point currentKeyValue = _keyFrames[index].Value; 961totalLength += AnimatedTypeHelpers.GetSegmentLengthPoint(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
988return Value; 994return AnimatedTypeHelpers.InterpolatePoint(baseValue, Value, splineProgress);
PresentationFramework (1)
System\Windows\VisualStateManager.cs (1)
653return keyFrame.Value;