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