5 instantiations of DoubleKeyFrameCollection
PresentationCore (3)
System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (1)
522
_keyFrames = new
DoubleKeyFrameCollection
();
System\Windows\Media\Animation\Generated\DoubleKeyFrameCollection.cs (2)
62
DoubleKeyFrameCollection emptyCollection = new
DoubleKeyFrameCollection
();
93
return new
DoubleKeyFrameCollection
();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3898
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
DoubleKeyFrameCollection
(); };
System\Windows\Markup\KnownTypes.cs (1)
1244
case KnownElements.DoubleKeyFrameCollection: o = new System.Windows.Media.Animation.
DoubleKeyFrameCollection
(); break;
24 references to DoubleKeyFrameCollection
PresentationCore (19)
System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (6)
40
private
DoubleKeyFrameCollection
_keyFrames;
187
_keyFrames = (
DoubleKeyFrameCollection
)sourceAnimation._keyFrames.CloneCurrentValue();
191
_keyFrames = (
DoubleKeyFrameCollection
)sourceAnimation._keyFrames.Clone();
492
KeyFrames = (
DoubleKeyFrameCollection
)value;
499
public
DoubleKeyFrameCollection
KeyFrames
516
_keyFrames =
DoubleKeyFrameCollection
.Empty;
System\Windows\Media\Animation\Generated\DoubleKeyFrameCollection.cs (13)
34
private static
DoubleKeyFrameCollection
s_emptyCollection;
56
public static
DoubleKeyFrameCollection
Empty
62
DoubleKeyFrameCollection
emptyCollection = new DoubleKeyFrameCollection();
82
public new
DoubleKeyFrameCollection
Clone()
84
return (
DoubleKeyFrameCollection
)base.Clone();
101
DoubleKeyFrameCollection
sourceCollection = (
DoubleKeyFrameCollection
) sourceFreezable;
122
DoubleKeyFrameCollection
sourceCollection = (
DoubleKeyFrameCollection
) sourceFreezable;
143
DoubleKeyFrameCollection
sourceCollection = (
DoubleKeyFrameCollection
) sourceFreezable;
164
DoubleKeyFrameCollection
sourceCollection = (
DoubleKeyFrameCollection
) sourceFreezable;
PresentationFramework (5)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
274
case 178: t = () => typeof(
DoubleKeyFrameCollection
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (2)
4475
typeof(System.Windows.Media.Animation.
DoubleKeyFrameCollection
), // type
4479
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.
DoubleKeyFrameCollection
)value; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3896
typeof(System.Windows.Media.Animation.
DoubleKeyFrameCollection
),
System\Windows\Markup\KnownTypes.cs (1)
5732
case KnownElements.DoubleKeyFrameCollection: t = typeof(System.Windows.Media.Animation.
DoubleKeyFrameCollection
); break;