5 instantiations of ObjectKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (1)
473
_keyFrames = new
ObjectKeyFrameCollection
();
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (2)
54
ObjectKeyFrameCollection emptyCollection = new
ObjectKeyFrameCollection
();
85
return new
ObjectKeyFrameCollection
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7183
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
ObjectKeyFrameCollection
(); };
System\Windows\Markup\KnownTypes.cs (1)
1431
case KnownElements.ObjectKeyFrameCollection: o = new System.Windows.Media.Animation.
ObjectKeyFrameCollection
(); break;
24 references to ObjectKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (6)
24
private
ObjectKeyFrameCollection
_keyFrames;
171
_keyFrames = (
ObjectKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
175
_keyFrames = (
ObjectKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
443
KeyFrames = (
ObjectKeyFrameCollection
)value;
450
public
ObjectKeyFrameCollection
KeyFrames
467
_keyFrames =
ObjectKeyFrameCollection
.Empty;
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (13)
26
private static
ObjectKeyFrameCollection
s_emptyCollection;
48
public static
ObjectKeyFrameCollection
Empty
54
ObjectKeyFrameCollection
emptyCollection = new ObjectKeyFrameCollection();
74
public new
ObjectKeyFrameCollection
Clone()
76
return (
ObjectKeyFrameCollection
)base.Clone();
93
ObjectKeyFrameCollection
sourceCollection = (
ObjectKeyFrameCollection
) sourceFreezable;
114
ObjectKeyFrameCollection
sourceCollection = (
ObjectKeyFrameCollection
) sourceFreezable;
135
ObjectKeyFrameCollection
sourceCollection = (
ObjectKeyFrameCollection
) sourceFreezable;
156
ObjectKeyFrameCollection
sourceCollection = (
ObjectKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
525
case 431: t = () => typeof(
ObjectKeyFrameCollection
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5262
typeof(System.Windows.Media.Animation.
ObjectKeyFrameCollection
), // type
5266
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.ObjectAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.
ObjectKeyFrameCollection
)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7181
typeof(System.Windows.Media.Animation.
ObjectKeyFrameCollection
),
System\Windows\Markup\KnownTypes.cs (1)
5985
case KnownElements.ObjectKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
ObjectKeyFrameCollection
); break;