5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (5)
176
_keyFrames
= (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
180
_keyFrames
= (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone();
472
_keyFrames
= ObjectKeyFrameCollection.Empty;
478
_keyFrames
= new ObjectKeyFrameCollection();
497
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (28)
80
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
172
if (sourceAnimation.
_keyFrames
!= null)
176
_keyFrames = (ObjectKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
180
_keyFrames = (ObjectKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
183
OnFreezablePropertyChanged(null,
_keyFrames
);
319
if (
_keyFrames
== null)
468
if (
_keyFrames
== null)
480
OnFreezablePropertyChanged(null,
_keyFrames
);
486
return
_keyFrames
;
494
if (value !=
_keyFrames
)
496
OnFreezablePropertyChanged(
_keyFrames
, value);
513
return
_keyFrames
!= null
514
&&
_keyFrames
.Count > 0;
540
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
555
if (
_keyFrames
!= null)
557
Int32 keyFrameCount =
_keyFrames
.Count;
561
KeyTime keyTime =
_keyFrames
[index].KeyTime;
592
if (
_keyFrames
!= null)
594
keyFrameCount =
_keyFrames
.Count;
645
KeyTime keyTime =
_keyFrames
[index].KeyTime;
719
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
808
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
819
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
842
Object prevKeyValue =
_keyFrames
[index - 1].Value;
846
Object currentKeyValue =
_keyFrames
[index].Value;
863
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
873
totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue,
_keyFrames
[index].Value);