5 instantiations of ByteKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (1)
507_keyFrames = new ByteKeyFrameCollection();
System\Windows\Media\Animation\Generated\ByteKeyFrameCollection.cs (2)
54ByteKeyFrameCollection emptyCollection = new ByteKeyFrameCollection(); 85return new ByteKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2405bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.ByteKeyFrameCollection(); };
System\Windows\Markup\KnownTypes.cs (1)
1158case KnownElements.ByteKeyFrameCollection: o = new System.Windows.Media.Animation.ByteKeyFrameCollection(); break;
24 references to ByteKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (6)
25private ByteKeyFrameCollection _keyFrames; 172_keyFrames = (ByteKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 176_keyFrames = (ByteKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 477KeyFrames = (ByteKeyFrameCollection)value; 484public ByteKeyFrameCollection KeyFrames 501_keyFrames = ByteKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\ByteKeyFrameCollection.cs (13)
26private static ByteKeyFrameCollection s_emptyCollection; 48public static ByteKeyFrameCollection Empty 54ByteKeyFrameCollection emptyCollection = new ByteKeyFrameCollection(); 74public new ByteKeyFrameCollection Clone() 76return (ByteKeyFrameCollection)base.Clone(); 93ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 114ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 135ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 156ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
157case 63: t = () => typeof(ByteKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4217typeof(System.Windows.Media.Animation.ByteKeyFrameCollection), // type 4221bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.ByteAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.ByteKeyFrameCollection)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2403typeof(System.Windows.Media.Animation.ByteKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
5617case KnownElements.ByteKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ByteKeyFrameCollection); break;