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