5 instantiations of PointKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (1)
522_keyFrames = new PointKeyFrameCollection();
System\Windows\Media\Animation\Generated\PointKeyFrameCollection.cs (2)
62PointKeyFrameCollection emptyCollection = new PointKeyFrameCollection(); 93return new PointKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7788bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.PointKeyFrameCollection(); };
System\Windows\Markup\KnownTypes.cs (1)
1469case KnownElements.PointKeyFrameCollection: o = new System.Windows.Media.Animation.PointKeyFrameCollection(); break;
24 references to PointKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (6)
40private PointKeyFrameCollection _keyFrames; 187_keyFrames = (PointKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 191_keyFrames = (PointKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 492KeyFrames = (PointKeyFrameCollection)value; 499public PointKeyFrameCollection KeyFrames 516_keyFrames = PointKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\PointKeyFrameCollection.cs (13)
34private static PointKeyFrameCollection s_emptyCollection; 56public static PointKeyFrameCollection Empty 62PointKeyFrameCollection emptyCollection = new PointKeyFrameCollection(); 82public new PointKeyFrameCollection Clone() 84return (PointKeyFrameCollection)base.Clone(); 101PointKeyFrameCollection sourceCollection = (PointKeyFrameCollection) sourceFreezable; 122PointKeyFrameCollection sourceCollection = (PointKeyFrameCollection) sourceFreezable; 143PointKeyFrameCollection sourceCollection = (PointKeyFrameCollection) sourceFreezable; 164PointKeyFrameCollection sourceCollection = (PointKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
573case 477: t = () => typeof(PointKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5383typeof(System.Windows.Media.Animation.PointKeyFrameCollection), // type 5387bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.PointAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.PointKeyFrameCollection)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7786typeof(System.Windows.Media.Animation.PointKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
6031case KnownElements.PointKeyFrameCollection: t = typeof(System.Windows.Media.Animation.PointKeyFrameCollection); break;