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