5 writes to _keyFrames
PresentationFramework (5)
System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (5)
186
_keyFrames
= (ThicknessKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue();
190
_keyFrames
= (ThicknessKeyFrameCollection)sourceAnimation._keyFrames.Clone();
515
_keyFrames
= ThicknessKeyFrameCollection.Empty;
521
_keyFrames
= new ThicknessKeyFrameCollection();
540
_keyFrames
= value;
28 references to _keyFrames
PresentationFramework (28)
System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (28)
90
canFreeze &= Freezable.Freeze(
_keyFrames
, isChecking);
182
if (sourceAnimation.
_keyFrames
!= null)
186
_keyFrames = (ThicknessKeyFrameCollection)sourceAnimation.
_keyFrames
.CloneCurrentValue();
190
_keyFrames = (ThicknessKeyFrameCollection)sourceAnimation.
_keyFrames
.Clone();
193
OnFreezablePropertyChanged(null,
_keyFrames
);
329
if (
_keyFrames
== null)
511
if (
_keyFrames
== null)
523
OnFreezablePropertyChanged(null,
_keyFrames
);
529
return
_keyFrames
;
537
if (value !=
_keyFrames
)
539
OnFreezablePropertyChanged(
_keyFrames
, value);
556
return
_keyFrames
!= null
557
&&
_keyFrames
.Count > 0;
642
return
_keyFrames
[_sortedResolvedKeyFrames[resolvedKeyFrameIndex]._originalKeyFrameIndex];
657
if (
_keyFrames
!= null)
659
Int32 keyFrameCount =
_keyFrames
.Count;
663
KeyTime keyTime =
_keyFrames
[index].KeyTime;
694
if (
_keyFrames
!= null)
696
keyFrameCount =
_keyFrames
.Count;
747
KeyTime keyTime =
_keyFrames
[index].KeyTime;
819
KeyTimeType type =
_keyFrames
[index].KeyTime.Type;
908
Debug.Assert(
_keyFrames
!= null &&
_keyFrames
.Count > 2,
919
if (
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced)
942
Thickness prevKeyValue =
_keyFrames
[index - 1].Value;
946
Thickness currentKeyValue =
_keyFrames
[index].Value;
963
&&
_keyFrames
[index].KeyTime.Type == KeyTimeType.Paced);
973
totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue,
_keyFrames
[index].Value);