5 instantiations of ObjectKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (1)
473_keyFrames = new ObjectKeyFrameCollection();
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (2)
54ObjectKeyFrameCollection emptyCollection = new ObjectKeyFrameCollection(); 85return new ObjectKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7183bamlType.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)
24private ObjectKeyFrameCollection _keyFrames; 171_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 175_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 443KeyFrames = (ObjectKeyFrameCollection)value; 450public ObjectKeyFrameCollection KeyFrames 467_keyFrames = ObjectKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (13)
26private static ObjectKeyFrameCollection s_emptyCollection; 48public static ObjectKeyFrameCollection Empty 54ObjectKeyFrameCollection emptyCollection = new ObjectKeyFrameCollection(); 74public new ObjectKeyFrameCollection Clone() 76return (ObjectKeyFrameCollection)base.Clone(); 93ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 114ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 135ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 156ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
525case 431: t = () => typeof(ObjectKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5262typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection), // type 5266bamlMember.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)
7181typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
5985case KnownElements.ObjectKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection); break;