5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (5)
187
_keyFrames
= (VectorKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
191
_keyFrames
= (VectorKeyFrameCollection)sourceAnimation._keyFrames.Clone();
516
_keyFrames
= VectorKeyFrameCollection.Empty;
522
_keyFrames
= new VectorKeyFrameCollection();
541
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (28)
91
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
183
if (sourceAnimation.
_keyFrames
!= null)
187
_keyFrames = (VectorKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
191
_keyFrames = (VectorKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
194
OnFreezablePropertyChanged(null,
_keyFrames
);
330
if (
_keyFrames
== null)
512
if (
_keyFrames
== null)
524
OnFreezablePropertyChanged(null,
_keyFrames
);
530
return
_keyFrames
;
538
if (value !=
_keyFrames
)
540
OnFreezablePropertyChanged(
_keyFrames
, value);
557
return
_keyFrames
!= null
558
&&
_keyFrames
.Count > 0;
643
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
658
if (
_keyFrames
!= null)
660
Int32 keyFrameCount =
_keyFrames
.Count;
664
KeyTime keyTime =
_keyFrames
[index].KeyTime;
695
if (
_keyFrames
!= null)
697
keyFrameCount =
_keyFrames
.Count;
748
KeyTime keyTime =
_keyFrames
[index].KeyTime;
820
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
909
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
920
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
943
Vector prevKeyValue =
_keyFrames
[index - 1].Value;
947
Vector currentKeyValue =
_keyFrames
[index].Value;
964
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
974
totalLength += AnimatedTypeHelpers.GetSegmentLengthVector(prevKeyValue,
_keyFrames
[index].Value);