XAMLの記述 への返答

投稿で使用できる特殊コードの説明。(別タブで開きます。)
本名は入力しないようにしましょう。
投稿した後で削除するときに使うパスワードです。返答があった後は削除できません。
返答する人が目安にします。相手が小学生か社会人かで返答の仕方も変わります。
最初の投稿が質問の場合、質問者が解決時にチェックしてください。(以降も追加書き込み・返信は可能です。)
※「過去ログ」について書くときはその過去ログのURLも書いてください。

以下の返答は逆順(新しい順)に並んでいます。

投稿者 るきお  (社会人) 投稿日時 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>


記述の間違いがいろいろありましたので、訂正しています。
投稿者 YuO  (社会人) 投稿日時 2013/5/8 19:00:53
対象となるTriggerの中だと思いますが……。

http://ufcpp.net/study/dotnet/wpf_xamlani.html
とか
http://blogs.wankuma.com/kazuki/archive/2008/09/25/157453.aspx
とかが参考になるかと。
投稿者 名無しの権兵衛  (小学生) 投稿日時 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>