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)
63
Vector3DKeyFrameCollection emptyCollection = new
Vector3DKeyFrameCollection
();
94
return new
Vector3DKeyFrameCollection
();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10990
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
Vector3DKeyFrameCollection
(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1646
case 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)
42
private
Vector3DKeyFrameCollection
_keyFrames;
189
_keyFrames = (
Vector3DKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
193
_keyFrames = (
Vector3DKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
500
KeyFrames = (
Vector3DKeyFrameCollection
)value;
507
public
Vector3DKeyFrameCollection
KeyFrames
524
_keyFrames =
Vector3DKeyFrameCollection
.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DKeyFrameCollection.cs (13)
35
private static
Vector3DKeyFrameCollection
s_emptyCollection;
57
public static
Vector3DKeyFrameCollection
Empty
63
Vector3DKeyFrameCollection
emptyCollection = new Vector3DKeyFrameCollection();
83
public new
Vector3DKeyFrameCollection
Clone()
85
return (
Vector3DKeyFrameCollection
)base.Clone();
102
Vector3DKeyFrameCollection
sourceCollection = (
Vector3DKeyFrameCollection
) sourceFreezable;
123
Vector3DKeyFrameCollection
sourceCollection = (
Vector3DKeyFrameCollection
) sourceFreezable;
144
Vector3DKeyFrameCollection
sourceCollection = (
Vector3DKeyFrameCollection
) sourceFreezable;
165
Vector3DKeyFrameCollection
sourceCollection = (
Vector3DKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
809
case 717: t = () => typeof(
Vector3DKeyFrameCollection
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
6095
typeof(System.Windows.Media.Animation.
Vector3DKeyFrameCollection
), // type
6099
bamlMember.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)
10988
typeof(System.Windows.Media.Animation.
Vector3DKeyFrameCollection
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6261
case KnownElements.Vector3DKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
Vector3DKeyFrameCollection
); break;