这是通过混合为Windows手机应用程序创建的故事登机。它通过将网格从顶部位置转换为中心位置来为网格创建动画。 但问题是我想从代码背后做同样的事情。告诉我该怎么做。谢谢,请帮助我在c#中转换此代码,以便我可以从后面的代码在此网格上运行动画。
<Page.Resources>
<Storyboard x:Name="Storyboard1">
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="SecondaryGrid">
<EasingDoubleKeyFrame KeyTime="0" Value="3.731"/>
<EasingDoubleKeyFrame KeyTime="0:0:1" Value="3.731"/>
</DoubleAnimationUsingKeyFrames>
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateY)" Storyboard.TargetName="SecondaryGrid">
<EasingDoubleKeyFrame KeyTime="0" Value="-456.468"/>
<EasingDoubleKeyFrame KeyTime="0:0:1" Value="-7.463"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</Page.Resources>