4 types derived from Point3DKeyFrame
PresentationCore (4)
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
949public class DiscretePoint3DKeyFrame : Point3DKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (1)
1036public partial class EasingPoint3DKeyFrame : Point3DKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (1)
652public partial class LinearPoint3DKeyFrame : Point3DKeyFrame
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (1)
1100public partial class SplinePoint3DKeyFrame : Point3DKeyFrame
36 references to Point3DKeyFrame
PresentationCore (33)
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (2)
1803typeof(Point3DKeyFrame), 1829typeof(Point3DKeyFrame),
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (3)
235Point3DKeyFrame keyFrame = child as Point3DKeyFrame; 650private Point3DKeyFrame GetResolvedKeyFrame(Int32 resolvedKeyFrameIndex)
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DKeyFrameCollection.cs (28)
34private List<Point3DKeyFrame> _keyFrames; 47_keyFrames = new List< Point3DKeyFrame>(2); 65emptyCollection._keyFrames = new List< Point3DKeyFrame>(0); 107_keyFrames = new List< Point3DKeyFrame>(count); 111Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].Clone(); 128_keyFrames = new List< Point3DKeyFrame>(count); 132Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].CloneCurrentValue(); 149_keyFrames = new List< Point3DKeyFrame>(count); 153Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].GetAsFrozen(); 170_keyFrames = new List< Point3DKeyFrame>(count); 174Point3DKeyFrame keyFrame = (Point3DKeyFrame)sourceCollection._keyFrames[i].GetCurrentValueAsFrozen(); 267public void CopyTo(Point3DKeyFrame[] array, int index) 283return Add((Point3DKeyFrame)keyFrame); 289public int Add(Point3DKeyFrame keyFrame) 331return Contains((Point3DKeyFrame)keyFrame); 337public bool Contains(Point3DKeyFrame keyFrame) 349return IndexOf((Point3DKeyFrame)keyFrame); 355public int IndexOf(Point3DKeyFrame keyFrame) 367Insert(index, (Point3DKeyFrame)keyFrame); 373public void Insert(int index, Point3DKeyFrame keyFrame) 419Remove((Point3DKeyFrame)keyFrame); 425public void Remove(Point3DKeyFrame keyFrame) 462this[index] = (Point3DKeyFrame)value; 469public Point3DKeyFrame this[int index]
PresentationFramework (3)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
556case 464: t = () => typeof(Point3DKeyFrame); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7620typeof(System.Windows.Media.Animation.Point3DKeyFrame),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6008case KnownElements.Point3DKeyFrame: t = typeof(System.Windows.Media.Animation.Point3DKeyFrame); break;