5 writes to _keyFrames
PresentationCore (5)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (5)
172
_keyFrames
= (BooleanKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
176
_keyFrames
= (BooleanKeyFrameCollection)sourceAnimation._keyFrames.Clone();
468
_keyFrames
= BooleanKeyFrameCollection.Empty;
474
_keyFrames
= new BooleanKeyFrameCollection();
493
_keyFrames
= value;
28 references to _keyFrames
PresentationCore (28)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (28)
76
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
168
if (sourceAnimation.
_keyFrames
!= null)
172
_keyFrames = (BooleanKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
176
_keyFrames = (BooleanKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
179
OnFreezablePropertyChanged(null,
_keyFrames
);
315
if (
_keyFrames
== null)
464
if (
_keyFrames
== null)
476
OnFreezablePropertyChanged(null,
_keyFrames
);
482
return
_keyFrames
;
490
if (value !=
_keyFrames
)
492
OnFreezablePropertyChanged(
_keyFrames
, value);
509
return
_keyFrames
!= null
510
&&
_keyFrames
.Count > 0;
536
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
551
if (
_keyFrames
!= null)
553
Int32 keyFrameCount =
_keyFrames
.Count;
557
KeyTime keyTime =
_keyFrames
[index].KeyTime;
588
if (
_keyFrames
!= null)
590
keyFrameCount =
_keyFrames
.Count;
641
KeyTime keyTime =
_keyFrames
[index].KeyTime;
713
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
802
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
813
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
836
Boolean prevKeyValue =
_keyFrames
[index - 1].Value;
840
Boolean currentKeyValue =
_keyFrames
[index].Value;
857
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
867
totalLength += AnimatedTypeHelpers.GetSegmentLengthBoolean(prevKeyValue,
_keyFrames
[index].Value);