5 instantiations of StringKeyFrameCollection
PresentationCore (3)
Core\CSharp\System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (1)
497_keyFrames = new StringKeyFrameCollection();
Core\CSharp\System\Windows\Media\Animation\Generated\StringKeyFrameCollection.cs (2)
63StringKeyFrameCollection emptyCollection = new StringKeyFrameCollection(); 94return new StringKeyFrameCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9632bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.StringKeyFrameCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1576case KnownElements.StringKeyFrameCollection: o = new System.Windows.Media.Animation.StringKeyFrameCollection(); break;
24 references to StringKeyFrameCollection
PresentationCore (19)
Core\CSharp\System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (6)
42private StringKeyFrameCollection _keyFrames; 189_keyFrames = (StringKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 193_keyFrames = (StringKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 467KeyFrames = (StringKeyFrameCollection)value; 474public StringKeyFrameCollection KeyFrames 491_keyFrames = StringKeyFrameCollection.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\StringKeyFrameCollection.cs (13)
35private static StringKeyFrameCollection s_emptyCollection; 57public static StringKeyFrameCollection Empty 63StringKeyFrameCollection emptyCollection = new StringKeyFrameCollection(); 83public new StringKeyFrameCollection Clone() 85return (StringKeyFrameCollection)base.Clone(); 102StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable; 123StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable; 144StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable; 165StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
709case 617: t = () => typeof(StringKeyFrameCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5700typeof(System.Windows.Media.Animation.StringKeyFrameCollection), // type 5704bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.StringAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.StringKeyFrameCollection)value; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9630typeof(System.Windows.Media.Animation.StringKeyFrameCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6161case KnownElements.StringKeyFrameCollection: t = typeof(System.Windows.Media.Animation.StringKeyFrameCollection); break;