5 instantiations of ByteKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (1)
522_keyFrames = new ByteKeyFrameCollection();
System\Windows\Media\Animation\Generated\ByteKeyFrameCollection.cs (2)
62ByteKeyFrameCollection emptyCollection = new ByteKeyFrameCollection(); 93return new ByteKeyFrameCollection();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2407bamlType.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)
40private ByteKeyFrameCollection _keyFrames; 187_keyFrames = (ByteKeyFrameCollection)sourceAnimation._keyFrames.CloneCurrentValue(); 191_keyFrames = (ByteKeyFrameCollection)sourceAnimation._keyFrames.Clone(); 492KeyFrames = (ByteKeyFrameCollection)value; 499public ByteKeyFrameCollection KeyFrames 516_keyFrames = ByteKeyFrameCollection.Empty;
System\Windows\Media\Animation\Generated\ByteKeyFrameCollection.cs (13)
34private static ByteKeyFrameCollection s_emptyCollection; 56public static ByteKeyFrameCollection Empty 62ByteKeyFrameCollection emptyCollection = new ByteKeyFrameCollection(); 82public new ByteKeyFrameCollection Clone() 84return (ByteKeyFrameCollection)base.Clone(); 101ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 122ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 143ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable; 164ByteKeyFrameCollection sourceCollection = (ByteKeyFrameCollection) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
159case 63: t = () => typeof(ByteKeyFrameCollection); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4219typeof(System.Windows.Media.Animation.ByteKeyFrameCollection), // type 4223bamlMember.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)
2405typeof(System.Windows.Media.Animation.ByteKeyFrameCollection),
System\Windows\Markup\KnownTypes.cs (1)
5617case KnownElements.ByteKeyFrameCollection: t = typeof(System.Windows.Media.Animation.ByteKeyFrameCollection); break;