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