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