5 instantiations of BooleanKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (1)
474
_keyFrames = new
BooleanKeyFrameCollection
();
System\Windows\Media\Animation\Generated\BooleanKeyFrameCollection.cs (2)
54
BooleanKeyFrameCollection emptyCollection = new
BooleanKeyFrameCollection
();
85
return new
BooleanKeyFrameCollection
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2202
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
BooleanKeyFrameCollection
(); };
System\Windows\Markup\KnownTypes.cs (1)
1148
case KnownElements.BooleanKeyFrameCollection: o = new System.Windows.Media.Animation.
BooleanKeyFrameCollection
(); break;
24 references to BooleanKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (6)
25
private
BooleanKeyFrameCollection
_keyFrames;
172
_keyFrames = (
BooleanKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
176
_keyFrames = (
BooleanKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
444
KeyFrames = (
BooleanKeyFrameCollection
)value;
451
public
BooleanKeyFrameCollection
KeyFrames
468
_keyFrames =
BooleanKeyFrameCollection
.Empty;
System\Windows\Media\Animation\Generated\BooleanKeyFrameCollection.cs (13)
26
private static
BooleanKeyFrameCollection
s_emptyCollection;
48
public static
BooleanKeyFrameCollection
Empty
54
BooleanKeyFrameCollection
emptyCollection = new BooleanKeyFrameCollection();
74
public new
BooleanKeyFrameCollection
Clone()
76
return (
BooleanKeyFrameCollection
)base.Clone();
93
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
114
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
135
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
156
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
142
case 48: t = () => typeof(
BooleanKeyFrameCollection
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4130
typeof(System.Windows.Media.Animation.
BooleanKeyFrameCollection
), // type
4134
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.BooleanAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.
BooleanKeyFrameCollection
)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2200
typeof(System.Windows.Media.Animation.
BooleanKeyFrameCollection
),
System\Windows\Markup\KnownTypes.cs (1)
5602
case KnownElements.BooleanKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
BooleanKeyFrameCollection
); break;