4 types derived from Point3DKeyFrame
PresentationCore (4)
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
938public class DiscretePoint3DKeyFrame : Point3DKeyFrame
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
1027public partial class EasingPoint3DKeyFrame : Point3DKeyFrame
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
643public partial class LinearPoint3DKeyFrame : Point3DKeyFrame
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
1048public partial class SplinePoint3DKeyFrame : Point3DKeyFrame
36 references to Point3DKeyFrame
PresentationCore (33)
System\Windows\Media\Animation\Generated\KeyFrames.cs (2)
1756typeof(Point3DKeyFrame), 1782typeof(Point3DKeyFrame),
System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (3)
219Point3DKeyFrame keyFrame = child as Point3DKeyFrame; 628private Point3DKeyFrame GetResolvedKeyFrame(Int32 resolvedKeyFrameIndex)
System\Windows\Media\Animation\Generated\Point3DKeyFrameCollection.cs (28)
24private List<Point3DKeyFrame> _keyFrames; 37_keyFrames = new List< Point3DKeyFrame>(2); 55_keyFrames = new List<Point3DKeyFrame>(0) 98_keyFrames = new List< Point3DKeyFrame>(count); 102Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].Clone(); 119_keyFrames = new List< Point3DKeyFrame>(count); 123Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].CloneCurrentValue(); 140_keyFrames = new List< Point3DKeyFrame>(count); 144Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].GetAsFrozen(); 161_keyFrames = new List< Point3DKeyFrame>(count); 165Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].GetCurrentValueAsFrozen(); 258public void CopyTo(Point3DKeyFrame[] array, int index) 274return Add((Point3DKeyFrame)keyFrame); 280public int Add(Point3DKeyFrame keyFrame) 319return Contains((Point3DKeyFrame)keyFrame); 325public bool Contains(Point3DKeyFrame keyFrame) 337return IndexOf((Point3DKeyFrame)keyFrame); 343public int IndexOf(Point3DKeyFrame keyFrame) 355Insert(index, (Point3DKeyFrame)keyFrame); 361public void Insert(int index, Point3DKeyFrame keyFrame) 404Remove((Point3DKeyFrame)keyFrame); 410public void Remove(Point3DKeyFrame keyFrame) 447this[index] = (Point3DKeyFrame)value; 454public Point3DKeyFrame this[int index]
PresentationFramework (3)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
557case 464: t = () => typeof(Point3DKeyFrame); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8401typeof(System.Windows.Media.Animation.Point3DKeyFrame),
System\Windows\Markup\KnownTypes.cs (1)
6011case KnownElements.Point3DKeyFrame: t = typeof(System.Windows.Media.Animation.Point3DKeyFrame); break;