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