5 writes to _keyFrames
PresentationCore (5)
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (5)
189
_keyFrames
= (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
193
_keyFrames
= (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone();
491
_keyFrames
= ObjectKeyFrameCollection.Empty;
497
_keyFrames
= new ObjectKeyFrameCollection();
519
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (28)
93
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
185
if (sourceAnimation.
_keyFrames
!= null)
189
_keyFrames = (ObjectKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
193
_keyFrames = (ObjectKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
196
OnFreezablePropertyChanged(null,
_keyFrames
);
338
if (
_keyFrames
== null)
487
if (
_keyFrames
== null)
499
OnFreezablePropertyChanged(null,
_keyFrames
);
505
return
_keyFrames
;
516
if (value !=
_keyFrames
)
518
OnFreezablePropertyChanged(
_keyFrames
, value);
535
return
_keyFrames
!= null
536
&&
_keyFrames
.Count > 0;
562
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
577
if (
_keyFrames
!= null)
579
Int32 keyFrameCount =
_keyFrames
.Count;
583
KeyTime keyTime =
_keyFrames
[index].KeyTime;
614
if (
_keyFrames
!= null)
616
keyFrameCount =
_keyFrames
.Count;
667
KeyTime keyTime =
_keyFrames
[index].KeyTime;
739
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
828
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
839
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
862
Object prevKeyValue =
_keyFrames
[index - 1].Value;
866
Object currentKeyValue =
_keyFrames
[index].Value;
883
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
893
totalLength += AnimatedTypeHelpers.GetSegmentLengthObject(prevKeyValue,
_keyFrames
[index].Value);