4 types derived from PointKeyFrame
PresentationCore (4)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
862
public class DiscretePointKeyFrame :
PointKeyFrame
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
902
public partial class EasingPointKeyFrame :
PointKeyFrame
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
566
public partial class LinearPointKeyFrame :
PointKeyFrame
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
921
public partial class SplinePointKeyFrame :
PointKeyFrame
37 references to PointKeyFrame
PresentationCore (33)
System\Windows\Media\Animation\Generated\KeyFrames.cs (2)
1615
typeof(
PointKeyFrame
),
1641
typeof(
PointKeyFrame
),
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (3)
219
PointKeyFrame
keyFrame = child as
PointKeyFrame
;
628
private
PointKeyFrame
GetResolvedKeyFrame(Int32 resolvedKeyFrameIndex)
System\Windows\Media\Animation\Generated\PointKeyFrameCollection.cs (28)
24
private List<
PointKeyFrame
> _keyFrames;
37
_keyFrames = new List<
PointKeyFrame
>(2);
55
_keyFrames = new List<
PointKeyFrame
>(0)
98
_keyFrames = new List<
PointKeyFrame
>(count);
102
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].Clone();
119
_keyFrames = new List<
PointKeyFrame
>(count);
123
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].CloneCurrentValue();
140
_keyFrames = new List<
PointKeyFrame
>(count);
144
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].GetAsFrozen();
161
_keyFrames = new List<
PointKeyFrame
>(count);
165
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].GetCurrentValueAsFrozen();
258
public void CopyTo(
PointKeyFrame
[] array, int index)
274
return Add((
PointKeyFrame
)keyFrame);
280
public int Add(
PointKeyFrame
keyFrame)
319
return Contains((
PointKeyFrame
)keyFrame);
325
public bool Contains(
PointKeyFrame
keyFrame)
337
return IndexOf((
PointKeyFrame
)keyFrame);
343
public int IndexOf(
PointKeyFrame
keyFrame)
355
Insert(index, (
PointKeyFrame
)keyFrame);
361
public void Insert(int index,
PointKeyFrame
keyFrame)
404
Remove((
PointKeyFrame
)keyFrame);
410
public void Remove(
PointKeyFrame
keyFrame)
447
this[index] = (
PointKeyFrame
)value;
454
public
PointKeyFrame
this[int index]
PresentationFramework (4)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
569
case 476: t = () => typeof(
PointKeyFrame
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8574
typeof(System.Windows.Media.Animation.
PointKeyFrame
),
System\Windows\Markup\KnownTypes.cs (1)
6023
case KnownElements.PointKeyFrame: t = typeof(System.Windows.Media.Animation.
PointKeyFrame
); break;
System\Windows\VisualStateManager.cs (1)
651
PointKeyFrame
keyFrame = pak.KeyFrames[isEntering ? 0 : pak.KeyFrames.Count - 1];