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