4 types derived from PointKeyFrame
PresentationCore (4)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
861
public class DiscretePointKeyFrame :
PointKeyFrame
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
901
public partial class EasingPointKeyFrame :
PointKeyFrame
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
565
public partial class LinearPointKeyFrame :
PointKeyFrame
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
915
public partial class SplinePointKeyFrame :
PointKeyFrame
37 references to PointKeyFrame
PresentationCore (33)
System\Windows\Media\Animation\Generated\KeyFrames.cs (2)
1614
typeof(
PointKeyFrame
),
1640
typeof(
PointKeyFrame
),
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (3)
215
PointKeyFrame
keyFrame = child as
PointKeyFrame
;
624
private
PointKeyFrame
GetResolvedKeyFrame(Int32 resolvedKeyFrameIndex)
System\Windows\Media\Animation\Generated\PointKeyFrameCollection.cs (28)
25
private List<
PointKeyFrame
> _keyFrames;
38
_keyFrames = new List<
PointKeyFrame
>(2);
56
_keyFrames = new List<
PointKeyFrame
>(0)
99
_keyFrames = new List<
PointKeyFrame
>(count);
103
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].Clone();
120
_keyFrames = new List<
PointKeyFrame
>(count);
124
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].CloneCurrentValue();
141
_keyFrames = new List<
PointKeyFrame
>(count);
145
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].GetAsFrozen();
162
_keyFrames = new List<
PointKeyFrame
>(count);
166
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].GetCurrentValueAsFrozen();
259
public void CopyTo(
PointKeyFrame
[] array, int index)
275
return Add((
PointKeyFrame
)keyFrame);
281
public int Add(
PointKeyFrame
keyFrame)
320
return Contains((
PointKeyFrame
)keyFrame);
326
public bool Contains(
PointKeyFrame
keyFrame)
338
return IndexOf((
PointKeyFrame
)keyFrame);
344
public int IndexOf(
PointKeyFrame
keyFrame)
356
Insert(index, (
PointKeyFrame
)keyFrame);
362
public void Insert(int index,
PointKeyFrame
keyFrame)
405
Remove((
PointKeyFrame
)keyFrame);
411
public void Remove(
PointKeyFrame
keyFrame)
448
this[index] = (
PointKeyFrame
)value;
455
public
PointKeyFrame
this[int index]
PresentationFramework (4)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
570
case 476: t = () => typeof(
PointKeyFrame
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8575
typeof(System.Windows.Media.Animation.
PointKeyFrame
),
System\Windows\Markup\KnownTypes.cs (1)
6024
case KnownElements.PointKeyFrame: t = typeof(System.Windows.Media.Animation.
PointKeyFrame
); break;
System\Windows\VisualStateManager.cs (1)
652
PointKeyFrame
keyFrame = pak.KeyFrames[isEntering ? 0 : pak.KeyFrames.Count - 1];