投稿者 るきお  (社会人) 投稿日時 2013/5/8 19:13:25
こんな感じでわかるでしょうか?
この例ではRectangleのEventTriggerの中に書いています。
Rectangleをクリックするとくるっと動きます。

<Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Rectangle Fill="#FFFF4444" Width="100" Height="100">
            <Rectangle.Triggers>
                <EventTrigger RoutedEvent="MouseUp">
                    <BeginStoryboard>
                        <Storyboard>
                            <MatrixAnimationUsingPath Duration="0:0:3" Storyboard.TargetProperty="RenderTransform.Matrix">
                                <MatrixAnimationUsingPath.PathGeometry>
                                    <PathGeometry>
                                        <PathGeometry.Figures>                                  
                                            <PathFigure StartPoint="0,0">
                                                <ArcSegment Point="0.1,0" Size="200,200" IsLargeArc="true" />
                                            </PathFigure>                             
                                        </PathGeometry.Figures>
                                    </PathGeometry>
                                </MatrixAnimationUsingPath.PathGeometry>
                            </MatrixAnimationUsingPath>
                        </Storyboard>
                    </BeginStoryboard>

                </EventTrigger>
            </Rectangle.Triggers>
        </Rectangle>
    </Grid>
</Window>


記述の間違いがいろいろありましたので、訂正しています。