5 instantiations of Vector3DKeyFrameCollection
PresentationCore (3)
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (1)
530_keyFrames = new Vector3DKeyFrameCollection();
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DKeyFrameCollection.cs (2)
63Vector3DKeyFrameCollection emptyCollection = new Vector3DKeyFrameCollection(); 94return new Vector3DKeyFrameCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10990bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.Vector3DKeyFrameCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1646case KnownElements.Vector3DKeyFrameCollection: o = new System.Windows.Media.Animation.Vector3DKeyFrameCollection(); break;
24 references to Vector3DKeyFrameCollection
PresentationCore (19)
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (6)
42private Vector3DKeyFrameCollection _keyFrames; 189_keyFrames = (Vector3DKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 193_keyFrames = (Vector3DKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 500KeyFrames = (Vector3DKeyFrameCollection)value; 507public Vector3DKeyFrameCollection KeyFrames 524_keyFrames = Vector3DKeyFrameCollection.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DKeyFrameCollection.cs (13)
35private static Vector3DKeyFrameCollection s_emptyCollection; 57public static Vector3DKeyFrameCollection Empty 63Vector3DKeyFrameCollection emptyCollection = new Vector3DKeyFrameCollection(); 83public new Vector3DKeyFrameCollection Clone() 85return (Vector3DKeyFrameCollection)base.Clone(); 102Vector3DKeyFrameCollection sourceCollection = (Vector3DKeyFrameCollection) sourceFreezable; 123Vector3DKeyFrameCollection sourceCollection = (Vector3DKeyFrameCollection) sourceFreezable; 144Vector3DKeyFrameCollection sourceCollection = (Vector3DKeyFrameCollection) sourceFreezable; 165Vector3DKeyFrameCollection sourceCollection = (Vector3DKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
809case 717: t = () => typeof(Vector3DKeyFrameCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
6095typeof(System.Windows.Media.Animation.Vector3DKeyFrameCollection), // type 6099bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.Vector3DAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.Vector3DKeyFrameCollection)value; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10988typeof(System.Windows.Media.Animation.Vector3DKeyFrameCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6261case KnownElements.Vector3DKeyFrameCollection: t = typeof(System.Windows.Media.Animation.Vector3DKeyFrameCollection); break;