我在代码隐藏中定义了以下动画:
DoubleAnimation dbAscending = new DoubleAnimation(0, 15, new Duration(TimeSpan.FromMilliseconds(300)));
(myImage.RenderTransform as RotateTransform).BeginAnimation(RotateTransform.AngleProperty, dbAscending);
这很好用,启动后它会将myImage
旋转15度。现在我只需创建新的Storyboard
并将动画添加到其中,因为我需要使用其Completed
事件。我有一点问题,我注意到我可以将动画添加到Storyboard.Children
,但我没有设法定义我要将此动画应用到的对象和属性......
提前感谢您的帮助,直到现在我才在XAML中创建了故事板......
答案 0 :(得分:7)
您需要在动画上设置Storyboard附加属性,例如:
DoubleAnimation dbAscending = new DoubleAnimation(0, 15, new Duration(TimeSpan.FromMilliseconds(300)));
Storyboard storyboard = new Storyboard();
storyboard.Children.Add(dbAscending);
Storyboard.SetTarget(dbAscending, myImage);
Storyboard.SetTargetProperty(dbAscending, new PropertyPath("RenderTransform.Angle"));
(未经测试;也可以直接定位变换并减少角度路径)