5 writes to _keyFrames
PresentationCore (5)
Core\CSharp\System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (5)
189
_keyFrames
= (Int32KeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
193
_keyFrames
= (Int32KeyFrameCollection)sourceAnimation._keyFrames.Clone();
524
_keyFrames
= Int32KeyFrameCollection.Empty;
530
_keyFrames
= new Int32KeyFrameCollection();
552
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
Core\CSharp\System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (28)
93
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
185
if (sourceAnimation.
_keyFrames
!= null)
189
_keyFrames = (Int32KeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
193
_keyFrames = (Int32KeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
196
OnFreezablePropertyChanged(null,
_keyFrames
);
338
if (
_keyFrames
== null)
520
if (
_keyFrames
== null)
532
OnFreezablePropertyChanged(null,
_keyFrames
);
538
return
_keyFrames
;
549
if (value !=
_keyFrames
)
551
OnFreezablePropertyChanged(
_keyFrames
, value);
568
return
_keyFrames
!= null
569
&&
_keyFrames
.Count > 0;
654
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
669
if (
_keyFrames
!= null)
671
Int32 keyFrameCount =
_keyFrames
.Count;
675
KeyTime keyTime =
_keyFrames
[index].KeyTime;
706
if (
_keyFrames
!= null)
708
keyFrameCount =
_keyFrames
.Count;
759
KeyTime keyTime =
_keyFrames
[index].KeyTime;
831
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
920
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
931
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
954
Int32 prevKeyValue =
_keyFrames
[index - 1].Value;
958
Int32 currentKeyValue =
_keyFrames
[index].Value;
975
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
985
totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue,
_keyFrames
[index].Value);