WPF PathGeometry在DoubleAnimationUsingPath中被替换

时间:2015-01-31 15:31:57

标签: c# wpf path pathgeometry doubleanimation

所以我是WPF的新手并且不知道为什么这不起作用。我想在Ellipse上做一个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坐标完全被取代。

0 个答案:

没有答案