5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (5)
177
_keyFrames
= (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
181
_keyFrames
= (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone();
473
_keyFrames
= ObjectKeyFrameCollection.Empty;
479
_keyFrames
= new ObjectKeyFrameCollection();
498
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (28)
81
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
173
if (sourceAnimation.
_keyFrames
!= null)
177
_keyFrames = (ObjectKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
181
_keyFrames = (ObjectKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
184
OnFreezablePropertyChanged(null,
_keyFrames
);
320
if (
_keyFrames
== null)
469
if (
_keyFrames
== null)
481
OnFreezablePropertyChanged(null,
_keyFrames
);
487
return
_keyFrames
;
495
if (value !=
_keyFrames
)
497
OnFreezablePropertyChanged(
_keyFrames
, value);
514
return
_keyFrames
!= null
515
&&
_keyFrames
.Count > 0;
541
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
556
if (
_keyFrames
!= null)
558
Int32 keyFrameCount =
_keyFrames
.Count;
562
KeyTime keyTime =
_keyFrames
[index].KeyTime;
593
if (
_keyFrames
!= null)
595
keyFrameCount =
_keyFrames
.Count;
646
KeyTime keyTime =
_keyFrames
[index].KeyTime;
720
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
809
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
820
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
843
Object prevKeyValue =
_keyFrames
[index - 1].Value;
847
Object currentKeyValue =
_keyFrames
[index].Value;
864
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
874
totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue,
_keyFrames
[index].Value);