5 instantiations of ColorKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (1)
522_keyFrames = new ColorKeyFrameCollection();
System\Windows\Media\Animation\Generated\ColorKeyFrameCollection.cs (2)
62ColorKeyFrameCollection emptyCollection = new ColorKeyFrameCollection(); 93return new ColorKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2739bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.ColorKeyFrameCollection(); };
System\Windows\Markup\KnownTypes.cs (1)
1173case KnownElements.ColorKeyFrameCollection: o = new System.Windows.Media.Animation.ColorKeyFrameCollection(); break;
24 references to ColorKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (6)
40private ColorKeyFrameCollection _keyFrames; 187_keyFrames = (ColorKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 191_keyFrames = (ColorKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 492KeyFrames = (ColorKeyFrameCollection)value; 499public ColorKeyFrameCollection KeyFrames 516_keyFrames = ColorKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\ColorKeyFrameCollection.cs (13)
34private static ColorKeyFrameCollection s_emptyCollection; 56public static ColorKeyFrameCollection Empty 62ColorKeyFrameCollection emptyCollection = new ColorKeyFrameCollection(); 82public new ColorKeyFrameCollection Clone() 84return (ColorKeyFrameCollection)base.Clone(); 101ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable; 122ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable; 143ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable; 164ColorKeyFrameCollection sourceCollection = (ColorKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
185case 89: t = () => typeof(ColorKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4288typeof(System.Windows.Media.Animation.ColorKeyFrameCollection), // type 4292bamlMember.SetDelegate = 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)
2737typeof(System.Windows.Media.Animation.ColorKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
5643case KnownElements.ColorKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ColorKeyFrameCollection); break;