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)
63
StringKeyFrameCollection emptyCollection = new
StringKeyFrameCollection
();
94
return new
StringKeyFrameCollection
();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9632
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
StringKeyFrameCollection
(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1576
case 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)
42
private
StringKeyFrameCollection
_keyFrames;
189
_keyFrames = (
StringKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
193
_keyFrames = (
StringKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
467
KeyFrames = (
StringKeyFrameCollection
)value;
474
public
StringKeyFrameCollection
KeyFrames
491
_keyFrames =
StringKeyFrameCollection
.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\StringKeyFrameCollection.cs (13)
35
private static
StringKeyFrameCollection
s_emptyCollection;
57
public static
StringKeyFrameCollection
Empty
63
StringKeyFrameCollection
emptyCollection = new StringKeyFrameCollection();
83
public new
StringKeyFrameCollection
Clone()
85
return (
StringKeyFrameCollection
)base.Clone();
102
StringKeyFrameCollection
sourceCollection = (
StringKeyFrameCollection
) sourceFreezable;
123
StringKeyFrameCollection
sourceCollection = (
StringKeyFrameCollection
) sourceFreezable;
144
StringKeyFrameCollection
sourceCollection = (
StringKeyFrameCollection
) sourceFreezable;
165
StringKeyFrameCollection
sourceCollection = (
StringKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
709
case 617: t = () => typeof(
StringKeyFrameCollection
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
5700
typeof(System.Windows.Media.Animation.
StringKeyFrameCollection
), // type
5704
bamlMember.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)
9630
typeof(System.Windows.Media.Animation.
StringKeyFrameCollection
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6161
case KnownElements.StringKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
StringKeyFrameCollection
); break;