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