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