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