让目标沿着一条给定的路径移动,使用DoubleAnimationUsingPath类实现。实现如下。
点击鼠标移动
实现代码如下:界面XAML
<Grid x:Name="LayoutRoot">
<Grid.Resources>
<PathGeometry x:Key="movingPath" Figures="M 0,150 C300,-100 300,400 600,120"/>
</Grid.Resources>
<Button Content="Move" HorizontalAlignment="Left" Height="80" VerticalAlignment="Top" Width="80" Click="Button_Click">
<Button.RenderTransform>
<TranslateTransform x:Name="tt" X="0" Y=&#