4 types derived from PointKeyFrame
PresentationCore (4)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
873
public class DiscretePointKeyFrame :
PointKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
911
public partial class EasingPointKeyFrame :
PointKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
575
public partial class LinearPointKeyFrame :
PointKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
967
public partial class SplinePointKeyFrame :
PointKeyFrame
37 references to PointKeyFrame
PresentationCore (33)
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (2)
1659
typeof(
PointKeyFrame
),
1685
typeof(
PointKeyFrame
),
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (3)
235
PointKeyFrame
keyFrame = child as
PointKeyFrame
;
650
private
PointKeyFrame
GetResolvedKeyFrame(Int32 resolvedKeyFrameIndex)
Core\CSharp\System\Windows\Media\Animation\Generated\PointKeyFrameCollection.cs (28)
34
private List<
PointKeyFrame
> _keyFrames;
47
_keyFrames = new List<
PointKeyFrame
>(2);
65
emptyCollection._keyFrames = new List<
PointKeyFrame
>(0);
107
_keyFrames = new List<
PointKeyFrame
>(count);
111
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].Clone();
128
_keyFrames = new List<
PointKeyFrame
>(count);
132
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].CloneCurrentValue();
149
_keyFrames = new List<
PointKeyFrame
>(count);
153
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].GetAsFrozen();
170
_keyFrames = new List<
PointKeyFrame
>(count);
174
PointKeyFrame
keyFrame = (
PointKeyFrame
)sourceCollection._keyFrames[i].GetCurrentValueAsFrozen();
267
public void CopyTo(
PointKeyFrame
[] array, int index)
283
return Add((
PointKeyFrame
)keyFrame);
289
public int Add(
PointKeyFrame
keyFrame)
331
return Contains((
PointKeyFrame
)keyFrame);
337
public bool Contains(
PointKeyFrame
keyFrame)
349
return IndexOf((
PointKeyFrame
)keyFrame);
355
public int IndexOf(
PointKeyFrame
keyFrame)
367
Insert(index, (
PointKeyFrame
)keyFrame);
373
public void Insert(int index,
PointKeyFrame
keyFrame)
419
Remove((
PointKeyFrame
)keyFrame);
425
public void Remove(
PointKeyFrame
keyFrame)
462
this[index] = (
PointKeyFrame
)value;
469
public
PointKeyFrame
this[int index]
PresentationFramework (4)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
568
case 476: t = () => typeof(
PointKeyFrame
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7771
typeof(System.Windows.Media.Animation.
PointKeyFrame
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6020
case KnownElements.PointKeyFrame: t = typeof(System.Windows.Media.Animation.
PointKeyFrame
); break;
src\Framework\System\Windows\VisualStateManager.cs (1)
714
PointKeyFrame
keyFrame = pak.KeyFrames[isEntering ? 0 : pak.KeyFrames.Count - 1];