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