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)
63
ByteKeyFrameCollection emptyCollection = new
ByteKeyFrameCollection
();
94
return new
ByteKeyFrameCollection
();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2403
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
ByteKeyFrameCollection
(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1159
case 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)
42
private
ByteKeyFrameCollection
_keyFrames;
189
_keyFrames = (
ByteKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
193
_keyFrames = (
ByteKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
500
KeyFrames = (
ByteKeyFrameCollection
)value;
507
public
ByteKeyFrameCollection
KeyFrames
524
_keyFrames =
ByteKeyFrameCollection
.Empty;
Core\CSharp\System\Windows\Media\Animation\Generated\ByteKeyFrameCollection.cs (13)
35
private static
ByteKeyFrameCollection
s_emptyCollection;
57
public static
ByteKeyFrameCollection
Empty
63
ByteKeyFrameCollection
emptyCollection = new ByteKeyFrameCollection();
83
public new
ByteKeyFrameCollection
Clone()
85
return (
ByteKeyFrameCollection
)base.Clone();
102
ByteKeyFrameCollection
sourceCollection = (
ByteKeyFrameCollection
) sourceFreezable;
123
ByteKeyFrameCollection
sourceCollection = (
ByteKeyFrameCollection
) sourceFreezable;
144
ByteKeyFrameCollection
sourceCollection = (
ByteKeyFrameCollection
) sourceFreezable;
165
ByteKeyFrameCollection
sourceCollection = (
ByteKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
155
case 63: t = () => typeof(
ByteKeyFrameCollection
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4194
typeof(System.Windows.Media.Animation.
ByteKeyFrameCollection
), // type
4198
bamlMember.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)
2401
typeof(System.Windows.Media.Animation.
ByteKeyFrameCollection
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5607
case KnownElements.ByteKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
ByteKeyFrameCollection
); break;