所以我是 WPF 的新手,不知道为什么这不起作用。我想在椭圆上做一个 DoublePathAnimation。所以我使用了一个 PathObject 来简单地找出我需要哪些 PathGeometry 图形。
<Path Stroke="Black" StrokeThickness="5">
<Path.Data>
<PathGeometry Figures="M 200,100 C 307,180 390, 180 500,190"></PathGeometry>
</Path.Data>
</Path>
但是现在当我像这样在我的 PathAnimation 中使用这些数字时:
<Storyboard>
<!-- The X-axis animation -->
<DoubleAnimationUsingPath Name="aniX21"
Storyboard.TargetName="exportTarget21"
Storyboard.TargetProperty="X"
Source="X"
Duration="0:0:03"
RepeatBehavior="Forever"
AutoReverse="False">
<DoubleAnimationUsingPath.PathGeometry>
<PathGeometry Figures="M 200,100 C 307,180 390, 180 500,190"/>
</DoubleAnimationUsingPath.PathGeometry>
</DoubleAnimationUsingPath>
<DoubleAnimationUsingPath Name="aniY21"
Storyboard.TargetName="exportTarget21"
Storyboard.TargetProperty="Y"
Source="Y"
Duration="0:0:03"
RepeatBehavior="Forever"
AutoReverse="False">
<DoubleAnimationUsingPath.PathGeometry>
<PathGeometry Figures=" M 200,100 C 307,180 390, 180 500,190" />
</DoubleAnimationUsingPath.PathGeometry>
</DoubleAnimationUsingPath>
动画有效,但只有 x 坐标是正确的。y 坐标完全移位。