5 instantiations of PointAnimation
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimation.cs (1)
183
return new
PointAnimation
();
PresentationFramework (4)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7671
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
PointAnimation
(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1463
case KnownElements.PointAnimation: o = new System.Windows.Media.Animation.
PointAnimation
(); break;
src\Framework\System\Windows\VisualStateManager.cs (2)
486
result = new
PointAnimation
() { EasingFunction = easingFunction };
525
PointAnimation pa = new
PointAnimation
() { To = targetPoint, EasingFunction = easingFunction };
12 references to PointAnimation
PresentationCore (5)
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimation.cs (5)
61
Type typeofThis = typeof(
PointAnimation
);
162
public new
PointAnimation
Clone()
164
return (
PointAnimation
)base.Clone();
417
PointAnimation
a = (
PointAnimation
)d;
PresentationFramework (7)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
560
case 468: t = () => typeof(
PointAnimation
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7669
typeof(System.Windows.Media.Animation.
PointAnimation
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6012
case KnownElements.PointAnimation: t = typeof(System.Windows.Media.Animation.
PointAnimation
); break;
src\Framework\System\Windows\VisualStateManager.cs (4)
484
else if (timeline is
PointAnimation
|| timeline is PointAnimationUsingKeyFrames)
525
PointAnimation
pa = new PointAnimation() { To = targetPoint, EasingFunction = easingFunction };
700
PointAnimation
pa = timeline as
PointAnimation
;