5 instantiations of SingleKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (1)
507_keyFrames = new SingleKeyFrameCollection();
System\Windows\Media\Animation\Generated\SingleKeyFrameCollection.cs (2)
54SingleKeyFrameCollection emptyCollection = new SingleKeyFrameCollection(); 85return new SingleKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8957bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.SingleKeyFrameCollection(); };
System\Windows\Markup\KnownTypes.cs (1)
1531case KnownElements.SingleKeyFrameCollection: o = new System.Windows.Media.Animation.SingleKeyFrameCollection(); break;
24 references to SingleKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (6)
25private SingleKeyFrameCollection _keyFrames; 172_keyFrames = (SingleKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 176_keyFrames = (SingleKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 477KeyFrames = (SingleKeyFrameCollection)value; 484public SingleKeyFrameCollection KeyFrames 501_keyFrames = SingleKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\SingleKeyFrameCollection.cs (13)
26private static SingleKeyFrameCollection s_emptyCollection; 48public static SingleKeyFrameCollection Empty 54SingleKeyFrameCollection emptyCollection = new SingleKeyFrameCollection(); 74public new SingleKeyFrameCollection Clone() 76return (SingleKeyFrameCollection)base.Clone(); 93SingleKeyFrameCollection sourceCollection = (SingleKeyFrameCollection) sourceFreezable; 114SingleKeyFrameCollection sourceCollection = (SingleKeyFrameCollection) sourceFreezable; 135SingleKeyFrameCollection sourceCollection = (SingleKeyFrameCollection) sourceFreezable; 156SingleKeyFrameCollection sourceCollection = (SingleKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
659case 565: t = () => typeof(SingleKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5621typeof(System.Windows.Media.Animation.SingleKeyFrameCollection), // type 5625bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.SingleAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.SingleKeyFrameCollection)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8955typeof(System.Windows.Media.Animation.SingleKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
6119case KnownElements.SingleKeyFrameCollection: t = typeof(System.Windows.Media.Animation.SingleKeyFrameCollection); break;