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)
63VectorKeyFrameCollection emptyCollection = new VectorKeyFrameCollection(); 94return new VectorKeyFrameCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11091bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.VectorKeyFrameCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1652case 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)
42private VectorKeyFrameCollection _keyFrames; 189_keyFrames = (VectorKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 193_keyFrames = (VectorKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 500KeyFrames = (VectorKeyFrameCollection)value; 507public VectorKeyFrameCollection KeyFrames 524_keyFrames = VectorKeyFrameCollection.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\VectorKeyFrameCollection.cs (13)
35private static VectorKeyFrameCollection s_emptyCollection; 57public static VectorKeyFrameCollection Empty 63VectorKeyFrameCollection emptyCollection = new VectorKeyFrameCollection(); 83public new VectorKeyFrameCollection Clone() 85return (VectorKeyFrameCollection)base.Clone(); 102VectorKeyFrameCollection sourceCollection = (VectorKeyFrameCollection) sourceFreezable; 123VectorKeyFrameCollection sourceCollection = (VectorKeyFrameCollection) sourceFreezable; 144VectorKeyFrameCollection sourceCollection = (VectorKeyFrameCollection) sourceFreezable; 165VectorKeyFrameCollection sourceCollection = (VectorKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
817case 725: t = () => typeof(VectorKeyFrameCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
6112typeof(System.Windows.Media.Animation.VectorKeyFrameCollection), // type 6116bamlMember.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)
11089typeof(System.Windows.Media.Animation.VectorKeyFrameCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6269case KnownElements.VectorKeyFrameCollection: t = typeof(System.Windows.Media.Animation.VectorKeyFrameCollection); break;