5 writes to _keyFrames
PresentationFramework (5)
System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (5)
176
_keyFrames
= (ThicknessKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
180
_keyFrames
= (ThicknessKeyFrameCollection)sourceAnimation._keyFrames.Clone();
505
_keyFrames
= ThicknessKeyFrameCollection.Empty;
511
_keyFrames
= new ThicknessKeyFrameCollection();
530
_keyFrames
= value;
28 references to _keyFrames
PresentationFramework (28)
System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (28)
80
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
172
if (sourceAnimation.
_keyFrames
!= null)
176
_keyFrames = (ThicknessKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
180
_keyFrames = (ThicknessKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
183
OnFreezablePropertyChanged(null,
_keyFrames
);
319
if (
_keyFrames
== null)
501
if (
_keyFrames
== null)
513
OnFreezablePropertyChanged(null,
_keyFrames
);
519
return
_keyFrames
;
527
if (value !=
_keyFrames
)
529
OnFreezablePropertyChanged(
_keyFrames
, value);
546
return
_keyFrames
!= null
547
&&
_keyFrames
.Count > 0;
632
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
647
if (
_keyFrames
!= null)
649
Int32 keyFrameCount =
_keyFrames
.Count;
653
KeyTime keyTime =
_keyFrames
[index].KeyTime;
684
if (
_keyFrames
!= null)
686
keyFrameCount =
_keyFrames
.Count;
737
KeyTime keyTime =
_keyFrames
[index].KeyTime;
809
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
898
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
909
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
932
Thickness prevKeyValue =
_keyFrames
[index - 1].Value;
936
Thickness currentKeyValue =
_keyFrames
[index].Value;
953
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
963
totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue,
_keyFrames
[index].Value);