特定のラインパスの最後にオブジェクト(円)を配置できる方法があるかどうかを尋ねたいだけです。
これに似ています:
--------------------------------------------O
Start End
現在、行をトレースするための次のコードがあります。
<Grid x:Name="LayoutRoot" >
<Path Stroke="Red" StrokeThickness="4" x:Name="path4" Data="{Binding MyProperty1}" >
<Path.StrokeDashArray>
<System:Double>500</System:Double>
<System:Double>1000</System:Double>
</Path.StrokeDashArray>
</Path>
</Grid>
ここで、私のパスのデータ(M532,668 L523,695 361,663 101,678 117,638など)が異なります。
私のアニメーションはこんな感じです...
<Storyboard x:Key="Story1" RepeatBehavior="Forever">
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00"
Storyboard.TargetName="path1"
Storyboard.TargetProperty="(Shape.StrokeDashOffset)">
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="500"/>
<SplineDoubleKeyFrame KeyTime="00:00:08" Value="0"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
助言がありますか?