5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (5)
177
_keyFrames
= (Rotation3DKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
181
_keyFrames
= (Rotation3DKeyFrameCollection)sourceAnimation._keyFrames.Clone();
506
_keyFrames
= Rotation3DKeyFrameCollection.Empty;
512
_keyFrames
= new Rotation3DKeyFrameCollection();
531
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (28)
81
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
173
if (sourceAnimation.
_keyFrames
!= null)
177
_keyFrames = (Rotation3DKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
181
_keyFrames = (Rotation3DKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
184
OnFreezablePropertyChanged(null,
_keyFrames
);
320
if (
_keyFrames
== null)
502
if (
_keyFrames
== null)
514
OnFreezablePropertyChanged(null,
_keyFrames
);
520
return
_keyFrames
;
528
if (value !=
_keyFrames
)
530
OnFreezablePropertyChanged(
_keyFrames
, value);
547
return
_keyFrames
!= null
548
&&
_keyFrames
.Count > 0;
633
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
648
if (
_keyFrames
!= null)
650
Int32 keyFrameCount =
_keyFrames
.Count;
654
KeyTime keyTime =
_keyFrames
[index].KeyTime;
685
if (
_keyFrames
!= null)
687
keyFrameCount =
_keyFrames
.Count;
738
KeyTime keyTime =
_keyFrames
[index].KeyTime;
812
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
901
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
912
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
935
Rotation3D prevKeyValue =
_keyFrames
[index - 1].Value;
939
Rotation3D currentKeyValue =
_keyFrames
[index].Value;
956
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
966
totalLength += AnimatedTypeHelpers.GetSegmentLengthRotation3D(prevKeyValue,
_keyFrames
[index].Value);