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)
63BooleanKeyFrameCollection emptyCollection = new BooleanKeyFrameCollection(); 94return new BooleanKeyFrameCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2200bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.BooleanKeyFrameCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1149case 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)
42private BooleanKeyFrameCollection _keyFrames; 189_keyFrames = (BooleanKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 193_keyFrames = (BooleanKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 467KeyFrames = (BooleanKeyFrameCollection)value; 474public BooleanKeyFrameCollection KeyFrames 491_keyFrames = BooleanKeyFrameCollection.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\BooleanKeyFrameCollection.cs (13)
35private static BooleanKeyFrameCollection s_emptyCollection; 57public static BooleanKeyFrameCollection Empty 63BooleanKeyFrameCollection emptyCollection = new BooleanKeyFrameCollection(); 83public new BooleanKeyFrameCollection Clone() 85return (BooleanKeyFrameCollection)base.Clone(); 102BooleanKeyFrameCollection sourceCollection = (BooleanKeyFrameCollection) sourceFreezable; 123BooleanKeyFrameCollection sourceCollection = (BooleanKeyFrameCollection) sourceFreezable; 144BooleanKeyFrameCollection sourceCollection = (BooleanKeyFrameCollection) sourceFreezable; 165BooleanKeyFrameCollection sourceCollection = (BooleanKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
140case 48: t = () => typeof(BooleanKeyFrameCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4107typeof(System.Windows.Media.Animation.BooleanKeyFrameCollection), // type 4111bamlMember.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)
2198typeof(System.Windows.Media.Animation.BooleanKeyFrameCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5592case KnownElements.BooleanKeyFrameCollection: t = typeof(System.Windows.Media.Animation.BooleanKeyFrameCollection); break;