请告诉我如何在iOS手机中操作Windows Phone 8中的动画。
我的意思是类似的功能
[UIView animateWithDuration:0.2 animtaion:{} completion:{}];
在没有设置目标和其他属性的情况下,是否可以通过Storyboard和DoubleAnimation
(或类似的东西)实现这一目标?
现在我这样做:
DoubleAnimation myDoubleAnimation = new DoubleAnimation();
myDoubleAnimation.From = 10;
myDoubleAnimation.To = 50;
myDoubleAnimation.Duration = new Duration(TimeSpan.FromMilliseconds(200));
// Configure the animation to target the button's Width property.
Storyboard.SetTarget(myDoubleAnimation, selectedItem);
Storyboard.SetTargetProperty(myDoubleAnimation, new PropertyPath(ListBoxItem.HeightProperty));
// Create a storyboard to contain the animation.
Storyboard myHeightAnimatedButtonStoryboard = new Storyboard();
myHeightAnimatedButtonStoryboard.Children.Add(myDoubleAnimation);
myHeightAnimatedButtonStoryboard.Begin();
我希望你明白我的需要:) 谢谢你;
答案 0 :(得分:1)
故事板在UI元素上运行,因此必须设置目标元素以查看动画效果,并且根据设置其他属性,我建议使用表达式混合。它是一个很棒的工具。