キャンバスにプログラムで配置されているイメージコントロールをアニメーション化するストーリーボードを作成しました。ストーリーボードはExpressionBlendで作成されました。
ストーリーボードを再生すると、画像が消えて別の場所でアニメーション化されます(最終的には画像コントロールが最後に飛んでくるのがわかります)。そもそも画像を配置した場所をアニメーション化するものではありません。ストーリーボードは機能しますが、アニメートしたい場所をアニメートしません。コントロールは、画面の下部と特定の画像の右側でアニメーション化することを想定しています。そのため、コードを使用して画像の場所を変更します。
xmlは次のとおりです。
<Storyboard x:Name="sbBagExit">
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.SkewX)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0:0:0.2" Value="11"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.7" Value="10.9973"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateY)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0" Value="332"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.2" Value="332"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.7" Value="332"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0" Value="-16"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.2" Value="0"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.7" Value="169.983"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
<Storyboard x:Name="sbBagDrop">
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0" Value="0"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="0"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="0"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateY)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0" Value="-172"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="332.001"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="344"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.6" Value="332"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0" Value="-8"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="-8"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="0"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.6" Value="-8"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.ScaleY)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="1"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="0.829"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.6" Value="1"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.ScaleX)" Storyboard.TargetName="imgBag">
<EasingDoubleKeyFrame KeyTime="0:0:0.4" Value="1"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="1.2"/>
<EasingDoubleKeyFrame KeyTime="0:0:0.6" Value="1"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
2番目のストーリーボードは最初のストーリーボードの直後に発生します。
私はこれについて2週間頭を悩ませてきました....誰かが私ができないことを見ることができますか?
事前にどうもありがとうございました。