5 instantiations of ByteKeyFrameCollection
PresentationCore (3)
Core\CSharp\System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (1)
530_keyFrames = new ByteKeyFrameCollection();
Core\CSharp\System\Windows\Media\Animation\Generated\ByteKeyFrameCollection.cs (2)
63ByteKeyFrameCollection emptyCollection = new ByteKeyFrameCollection(); 94return new ByteKeyFrameCollection();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2403bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.ByteKeyFrameCollection(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1159case KnownElements.ByteKeyFrameCollection: o = new System.Windows.Media.Animation.ByteKeyFrameCollection(); break;
24 references to ByteKeyFrameCollection
PresentationCore (19)
Core\CSharp\System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (6)
42private ByteKeyFrameCollection _keyFrames; 189_keyFrames = (ByteKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 193_keyFrames = (ByteKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 500KeyFrames = (ByteKeyFrameCollection)value; 507public ByteKeyFrameCollection KeyFrames 524_keyFrames = ByteKeyFrameCollection.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\ByteKeyFrameCollection.cs (13)
35private static ByteKeyFrameCollection s_emptyCollection; 57public static ByteKeyFrameCollection Empty 63ByteKeyFrameCollection emptyCollection = new ByteKeyFrameCollection(); 83public new ByteKeyFrameCollection Clone() 85return (ByteKeyFrameCollection)base.Clone(); 102ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 123ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 144ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 165ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
155case 63: t = () => typeof(ByteKeyFrameCollection); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4194typeof(System.Windows.Media.Animation.ByteKeyFrameCollection), // type 4198bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.ByteAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.ByteKeyFrameCollection)value; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2401typeof(System.Windows.Media.Animation.ByteKeyFrameCollection),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5607case KnownElements.ByteKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ByteKeyFrameCollection); break;