5 instantiations of SingleKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (1)
522
_keyFrames = new
SingleKeyFrameCollection
();
System\Windows\Media\Animation\Generated\SingleKeyFrameCollection.cs (2)
62
SingleKeyFrameCollection emptyCollection = new
SingleKeyFrameCollection
();
93
return new
SingleKeyFrameCollection
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8959
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
SingleKeyFrameCollection
(); };
System\Windows\Markup\KnownTypes.cs (1)
1531
case KnownElements.SingleKeyFrameCollection: o = new System.Windows.Media.Animation.
SingleKeyFrameCollection
(); break;
24 references to SingleKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (6)
40
private
SingleKeyFrameCollection
_keyFrames;
187
_keyFrames = (
SingleKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
191
_keyFrames = (
SingleKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
492
KeyFrames = (
SingleKeyFrameCollection
)value;
499
public
SingleKeyFrameCollection
KeyFrames
516
_keyFrames =
SingleKeyFrameCollection
.Empty;
System\Windows\Media\Animation\Generated\SingleKeyFrameCollection.cs (13)
34
private static
SingleKeyFrameCollection
s_emptyCollection;
56
public static
SingleKeyFrameCollection
Empty
62
SingleKeyFrameCollection
emptyCollection = new SingleKeyFrameCollection();
82
public new
SingleKeyFrameCollection
Clone()
84
return (
SingleKeyFrameCollection
)base.Clone();
101
SingleKeyFrameCollection
sourceCollection = (
SingleKeyFrameCollection
) sourceFreezable;
122
SingleKeyFrameCollection
sourceCollection = (
SingleKeyFrameCollection
) sourceFreezable;
143
SingleKeyFrameCollection
sourceCollection = (
SingleKeyFrameCollection
) sourceFreezable;
164
SingleKeyFrameCollection
sourceCollection = (
SingleKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
661
case 565: t = () => typeof(
SingleKeyFrameCollection
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5623
typeof(System.Windows.Media.Animation.
SingleKeyFrameCollection
), // type
5627
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.SingleAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.
SingleKeyFrameCollection
)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8957
typeof(System.Windows.Media.Animation.
SingleKeyFrameCollection
),
System\Windows\Markup\KnownTypes.cs (1)
6119
case KnownElements.SingleKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
SingleKeyFrameCollection
); break;