投稿者 名無しの権兵衛  (小学生) 投稿日時 2013/5/8 17:53:06
下のコードを記述したいのですが、XAMLのどこに記述すれば良いですか?
 <BeginStoryboard>
        <Storyboard>
            <MatrixAnimtionUsingPath Duration="0:0:3" Storyboard.TargetNeme="Rectengle1" Storyboard.TagetProperty="RenderTransform.Matrix">
                <MatrixAnimationUsingPath.PathGeometry>
                    <PathGeometry>
                        <PathGemetry.Figures>
                            <PathFigures>
                                <PathFigure StaratPoint="0,0">
                                    <ArcSegment Point="0.1,0" Size="200,200" IsLargeArc="true" />
                                </PathFigure>
                            </PathFigures>
                        </PathGemetry.Figures>
                    </PathGeometry>
                </MatrixAnimationUsingPath.PathGeometry>
            </MatrixAnimtionUsingPath>
        </Storyboard>
    </BeginStoryboard>