Visual Basic 中学校 掲示板 投稿の管理
タグのない投稿を抽出
統計
RSS
Visual Basic 中学校
投稿一覧
XAMLの記述
この投稿へのリンク
https://keijiban.umayadia.com/ThreadDetail.aspx?ThreadId=11257#CommentId25586
この投稿の削除
削除パスワード
削除する
コメント本文
投稿者
るきお
 (社会人)
投稿日時
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>
記述の間違いがいろいろありましたので、訂正しています。