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