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