5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (5)
172
_keyFrames
= (DecimalKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
176
_keyFrames
= (DecimalKeyFrameCollection)sourceAnimation._keyFrames.Clone();
501
_keyFrames
= DecimalKeyFrameCollection.Empty;
507
_keyFrames
= new DecimalKeyFrameCollection();
526
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (28)
76
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
168
if (sourceAnimation.
_keyFrames
!= null)
172
_keyFrames = (DecimalKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
176
_keyFrames = (DecimalKeyFrameCollection)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;
805
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
894
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
905
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
928
Decimal prevKeyValue =
_keyFrames
[index - 1].Value;
932
Decimal currentKeyValue =
_keyFrames
[index].Value;
949
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
959
totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue,
_keyFrames
[index].Value);