5 instantiations of ObjectKeyFrameCollection
PresentationCore (3)
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (1)
497_keyFrames = new ObjectKeyFrameCollection();
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (2)
63ObjectKeyFrameCollection emptyCollection = new ObjectKeyFrameCollection(); 94return new ObjectKeyFrameCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7181bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.ObjectKeyFrameCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1432case KnownElements.ObjectKeyFrameCollection: o = new System.Windows.Media.Animation.ObjectKeyFrameCollection(); break;
24 references to ObjectKeyFrameCollection
PresentationCore (19)
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (6)
42private ObjectKeyFrameCollection _keyFrames; 189_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 193_keyFrames = (ObjectKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 467KeyFrames = (ObjectKeyFrameCollection)value; 474public ObjectKeyFrameCollection KeyFrames 491_keyFrames = ObjectKeyFrameCollection.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectKeyFrameCollection.cs (13)
35private static ObjectKeyFrameCollection s_emptyCollection; 57public static ObjectKeyFrameCollection Empty 63ObjectKeyFrameCollection emptyCollection = new ObjectKeyFrameCollection(); 83public new ObjectKeyFrameCollection Clone() 85return (ObjectKeyFrameCollection)base.Clone(); 102ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 123ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 144ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable; 165ObjectKeyFrameCollection sourceCollection = (ObjectKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
523case 431: t = () => typeof(ObjectKeyFrameCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5239typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection), // type 5243bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.ObjectAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.ObjectKeyFrameCollection)value; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7179typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5975case KnownElements.ObjectKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ObjectKeyFrameCollection); break;