5 instantiations of BooleanKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (1)
489
_keyFrames = new
BooleanKeyFrameCollection
();
System\Windows\Media\Animation\Generated\BooleanKeyFrameCollection.cs (2)
62
BooleanKeyFrameCollection emptyCollection = new
BooleanKeyFrameCollection
();
93
return new
BooleanKeyFrameCollection
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2204
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)
40
private
BooleanKeyFrameCollection
_keyFrames;
187
_keyFrames = (
BooleanKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
191
_keyFrames = (
BooleanKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
459
KeyFrames = (
BooleanKeyFrameCollection
)value;
466
public
BooleanKeyFrameCollection
KeyFrames
483
_keyFrames =
BooleanKeyFrameCollection
.Empty;
System\Windows\Media\Animation\Generated\BooleanKeyFrameCollection.cs (13)
34
private static
BooleanKeyFrameCollection
s_emptyCollection;
56
public static
BooleanKeyFrameCollection
Empty
62
BooleanKeyFrameCollection
emptyCollection = new BooleanKeyFrameCollection();
82
public new
BooleanKeyFrameCollection
Clone()
84
return (
BooleanKeyFrameCollection
)base.Clone();
101
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
122
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
143
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
164
BooleanKeyFrameCollection
sourceCollection = (
BooleanKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
144
case 48: t = () => typeof(
BooleanKeyFrameCollection
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4132
typeof(System.Windows.Media.Animation.
BooleanKeyFrameCollection
), // type
4136
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)
2202
typeof(System.Windows.Media.Animation.
BooleanKeyFrameCollection
),
System\Windows\Markup\KnownTypes.cs (1)
5602
case KnownElements.BooleanKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
BooleanKeyFrameCollection
); break;