5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (5)
173
_keyFrames
= (Vector3DKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
177
_keyFrames
= (Vector3DKeyFrameCollection)sourceAnimation._keyFrames.Clone();
502
_keyFrames
= Vector3DKeyFrameCollection.Empty;
508
_keyFrames
= new Vector3DKeyFrameCollection();
527
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (28)
77
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
169
if (sourceAnimation.
_keyFrames
!= null)
173
_keyFrames = (Vector3DKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
177
_keyFrames = (Vector3DKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
180
OnFreezablePropertyChanged(null,
_keyFrames
);
316
if (
_keyFrames
== null)
498
if (
_keyFrames
== null)
510
OnFreezablePropertyChanged(null,
_keyFrames
);
516
return
_keyFrames
;
524
if (value !=
_keyFrames
)
526
OnFreezablePropertyChanged(
_keyFrames
, value);
543
return
_keyFrames
!= null
544
&&
_keyFrames
.Count > 0;
629
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
644
if (
_keyFrames
!= null)
646
Int32 keyFrameCount =
_keyFrames
.Count;
650
KeyTime keyTime =
_keyFrames
[index].KeyTime;
681
if (
_keyFrames
!= null)
683
keyFrameCount =
_keyFrames
.Count;
734
KeyTime keyTime =
_keyFrames
[index].KeyTime;
806
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
895
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
906
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
929
Vector3D prevKeyValue =
_keyFrames
[index - 1].Value;
933
Vector3D currentKeyValue =
_keyFrames
[index].Value;
950
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
960
totalLength += AnimatedTypeHelpers.GetSegmentLengthVector3D(prevKeyValue,
_keyFrames
[index].Value);