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