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