次のコードを使用して、ListView の場所をある列から別の列に変更しています。
<Grid.Resources>
<Storyboard x:Name="myStoryboard">
<FadeOutThemeAnimation TargetName="detailItems" />
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="detailItems2"
Storyboard.TargetProperty="(Grid.Column)">
<DiscreteObjectKeyFrame KeyTime="0"
Value="1" />
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</Grid.Resources>
これは機能しますが、アニメーションはなく、列が変わるだけです。一種の翻訳アニメーションが欲しいです。
ありがとう!