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