5 instantiations of Int32KeyFrameCollection
PresentationCore (3)
Core\CSharp\System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (1)
530_keyFrames = new Int32KeyFrameCollection();
Core\CSharp\System\Windows\Media\Animation\Generated\Int32KeyFrameCollection.cs (2)
63Int32KeyFrameCollection emptyCollection = new Int32KeyFrameCollection(); 94return new Int32KeyFrameCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5721bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.Int32KeyFrameCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1343case KnownElements.Int32KeyFrameCollection: o = new System.Windows.Media.Animation.Int32KeyFrameCollection(); break;
24 references to Int32KeyFrameCollection
PresentationCore (19)
Core\CSharp\System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (6)
42private Int32KeyFrameCollection _keyFrames; 189_keyFrames = (Int32KeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 193_keyFrames = (Int32KeyFrameCollection)sourceAnimation._keyFrames.Clone(); 500KeyFrames = (Int32KeyFrameCollection)value; 507public Int32KeyFrameCollection KeyFrames 524_keyFrames = Int32KeyFrameCollection.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\Int32KeyFrameCollection.cs (13)
35private static Int32KeyFrameCollection s_emptyCollection; 57public static Int32KeyFrameCollection Empty 63Int32KeyFrameCollection emptyCollection = new Int32KeyFrameCollection(); 83public new Int32KeyFrameCollection Clone() 85return (Int32KeyFrameCollection)base.Clone(); 102Int32KeyFrameCollection sourceCollection = (Int32KeyFrameCollection) sourceFreezable; 123Int32KeyFrameCollection sourceCollection = (Int32KeyFrameCollection) sourceFreezable; 144Int32KeyFrameCollection sourceCollection = (Int32KeyFrameCollection) sourceFreezable; 165Int32KeyFrameCollection sourceCollection = (Int32KeyFrameCollection) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
409case 317: t = () => typeof(Int32KeyFrameCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4880typeof(System.Windows.Media.Animation.Int32KeyFrameCollection), // type 4884bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.Int32AnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.Int32KeyFrameCollection)value; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5719typeof(System.Windows.Media.Animation.Int32KeyFrameCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5861case KnownElements.Int32KeyFrameCollection: t = typeof(System.Windows.Media.Animation.Int32KeyFrameCollection); break;