からのアイテムの削除をアニメーション化しようとしていLongListSelector
ます。ただし、選択したアイテムをに渡す方法がわかりませんStoryBoard.SetTarget
。これまでのところ全体を渡すことができたLongListSelector
ので、SelectionChanged
イベントが発生するとすべてが消えます( Opacity
1から0にアニメーション化したい)。リスト用のカスタム テンプレートがあります。
私のコード:
Storyboard s = new Storyboard();
DoubleAnimation animation = new DoubleAnimation();
animation.To = 0;
animation.Duration = new Duration(TimeSpan.FromSeconds(0.70));
Storyboard.SetTarget(animation, selector);
Storyboard.SetTargetProperty(animation, new PropertyPath(OpacityProperty));
s.Children.Add(animation);
s.Begin();
s.Completed += s_Completed;
ありがとう。