9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
179Value = value; 188Value = value; 198Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
483Value = value; 492Value = value; 547Value = (Color)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
187Value = value; 196Value = value; 211Value = value;
13 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Color prevKeyValue = _keyFrames[index - 1].Value; 958Color currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthColor(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
324return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
238return Value; 242return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
543return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
170return Value; 174return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
245return Value; 251return AnimatedTypeHelpers.InterpolateColor(baseValue, Value, splineProgress);
PresentationFramework (1)
src\Framework\System\Windows\VisualStateManager.cs (1)
669return keyFrame.Value;