5 instantiations of StringKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (1)
489_keyFrames = new StringKeyFrameCollection();
System\Windows\Media\Animation\Generated\StringKeyFrameCollection.cs (2)
62StringKeyFrameCollection emptyCollection = new StringKeyFrameCollection(); 93return new StringKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9636bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.StringKeyFrameCollection(); };
System\Windows\Markup\KnownTypes.cs (1)
1575case KnownElements.StringKeyFrameCollection: o = new System.Windows.Media.Animation.StringKeyFrameCollection(); break;
24 references to StringKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (6)
40private StringKeyFrameCollection _keyFrames; 187_keyFrames = (StringKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 191_keyFrames = (StringKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 459KeyFrames = (StringKeyFrameCollection)value; 466public StringKeyFrameCollection KeyFrames 483_keyFrames = StringKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\StringKeyFrameCollection.cs (13)
34private static StringKeyFrameCollection s_emptyCollection; 56public static StringKeyFrameCollection Empty 62StringKeyFrameCollection emptyCollection = new StringKeyFrameCollection(); 82public new StringKeyFrameCollection Clone() 84return (StringKeyFrameCollection)base.Clone(); 101StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable; 122StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable; 143StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable; 164StringKeyFrameCollection sourceCollection = (StringKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
713case 617: t = () => typeof(StringKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5742typeof(System.Windows.Media.Animation.StringKeyFrameCollection), // type 5746bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.StringAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.StringKeyFrameCollection)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9634typeof(System.Windows.Media.Animation.StringKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
6171case KnownElements.StringKeyFrameCollection: t = typeof(System.Windows.Media.Animation.StringKeyFrameCollection); break;