5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (5)
172
_keyFrames
= (Int32KeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
176
_keyFrames
= (Int32KeyFrameCollection)sourceAnimation._keyFrames.Clone();
501
_keyFrames
= Int32KeyFrameCollection.Empty;
507
_keyFrames
= new Int32KeyFrameCollection();
526
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (28)
76
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
168
if (sourceAnimation.
_keyFrames
!= null)
172
_keyFrames = (Int32KeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
176
_keyFrames = (Int32KeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
179
OnFreezablePropertyChanged(null,
_keyFrames
);
315
if (
_keyFrames
== null)
497
if (
_keyFrames
== null)
509
OnFreezablePropertyChanged(null,
_keyFrames
);
515
return
_keyFrames
;
523
if (value !=
_keyFrames
)
525
OnFreezablePropertyChanged(
_keyFrames
, value);
542
return
_keyFrames
!= null
543
&&
_keyFrames
.Count > 0;
628
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
643
if (
_keyFrames
!= null)
645
Int32 keyFrameCount =
_keyFrames
.Count;
649
KeyTime keyTime =
_keyFrames
[index].KeyTime;
680
if (
_keyFrames
!= null)
682
keyFrameCount =
_keyFrames
.Count;
733
KeyTime keyTime =
_keyFrames
[index].KeyTime;
807
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
896
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
907
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
930
Int32 prevKeyValue =
_keyFrames
[index - 1].Value;
934
Int32 currentKeyValue =
_keyFrames
[index].Value;
951
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
961
totalLength += AnimatedTypeHelpers.GetSegmentLengthInt32(prevKeyValue,
_keyFrames
[index].Value);