5 instantiations of ColorKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (1)
511_keyFrames = new ColorKeyFrameCollection();
System\Windows\Media\Animation\Generated\ColorKeyFrameCollection.cs (2)
53ColorKeyFrameCollection emptyCollection = new ColorKeyFrameCollection 85return new ColorKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2871DefaultConstructor = delegate () { return new System.Windows.Media.Animation.ColorKeyFrameCollection(); },
System\Windows\Markup\KnownTypes.cs (1)
1166case KnownElements.ColorKeyFrameCollection: o = new System.Windows.Media.Animation.ColorKeyFrameCollection(); break;
24 references to ColorKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (6)
29private ColorKeyFrameCollection _keyFrames; 176_keyFrames = (ColorKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 180_keyFrames = (ColorKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 481KeyFrames = (ColorKeyFrameCollection)value; 488public ColorKeyFrameCollection KeyFrames 505_keyFrames = ColorKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\ColorKeyFrameCollection.cs (13)
25private static ColorKeyFrameCollection s_emptyCollection; 47public static ColorKeyFrameCollection Empty 53ColorKeyFrameCollection emptyCollection = new ColorKeyFrameCollection 74public new ColorKeyFrameCollection Clone() 76return (ColorKeyFrameCollection)base.Clone(); 93ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable; 114ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable; 135ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable; 156ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
182case 89: t = () => typeof(ColorKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4521typeof(System.Windows.Media.Animation.ColorKeyFrameCollection), // type 4526SetDelegate = delegate (object target, object value) { ((System.Windows.Media.Animation.ColorAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.ColorKeyFrameCollection)value; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2868typeof(System.Windows.Media.Animation.ColorKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
5636case KnownElements.ColorKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ColorKeyFrameCollection); break;