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