5 instantiations of ObjectKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (1)
478_keyFrames = new ObjectKeyFrameCollection();
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (2)
53ObjectKeyFrameCollection emptyCollection = new ObjectKeyFrameCollection 85return new ObjectKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7901DefaultConstructor = delegate () { return new System.Windows.Media.Animation.ObjectKeyFrameCollection(); },
System\Windows\Markup\KnownTypes.cs (1)
1424case KnownElements.ObjectKeyFrameCollection: o = new System.Windows.Media.Animation.ObjectKeyFrameCollection(); break;
24 references to ObjectKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (6)
29private ObjectKeyFrameCollection _keyFrames; 176_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 180_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 448KeyFrames = (ObjectKeyFrameCollection)value; 455public ObjectKeyFrameCollection KeyFrames 472_keyFrames = ObjectKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (13)
25private static ObjectKeyFrameCollection s_emptyCollection; 47public static ObjectKeyFrameCollection Empty 53ObjectKeyFrameCollection 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)
524case 431: t = () => typeof(ObjectKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5605typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection), // type 5610SetDelegate = 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)
7898typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
5978case KnownElements.ObjectKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection); break;