5 instantiations of ObjectKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (1)
489_keyFrames = new ObjectKeyFrameCollection();
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (2)
62ObjectKeyFrameCollection emptyCollection = new ObjectKeyFrameCollection(); 93return new ObjectKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7185bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.ObjectKeyFrameCollection(); };
System\Windows\Markup\KnownTypes.cs (1)
1431case KnownElements.ObjectKeyFrameCollection: o = new System.Windows.Media.Animation.ObjectKeyFrameCollection(); break;
24 references to ObjectKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (6)
40private ObjectKeyFrameCollection _keyFrames; 187_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 191_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 459KeyFrames = (ObjectKeyFrameCollection)value; 466public ObjectKeyFrameCollection KeyFrames 483_keyFrames = ObjectKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (13)
34private static ObjectKeyFrameCollection s_emptyCollection; 56public static ObjectKeyFrameCollection Empty 62ObjectKeyFrameCollection emptyCollection = new ObjectKeyFrameCollection(); 82public new ObjectKeyFrameCollection Clone() 84return (ObjectKeyFrameCollection)base.Clone(); 101ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 122ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 143ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 164ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
527case 431: t = () => typeof(ObjectKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5264typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection), // type 5268bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.ObjectAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.ObjectKeyFrameCollection)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7183typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
5985case KnownElements.ObjectKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection); break;