我有一个3D立方体,我使用共享故事板制作动画。动画代码位于组合框的selectionChanged事件中,并且是INTENDED以确保在下一个开始之前停止任何仍在运行的动画;但它不是那样的工作!
我意识到这是一些非常混乱的代码,但我仍然不明白为什么我的故事板不会响应控制因为我正在调用.begin(这是真的)。
有人能告诉我为什么我无法阻止StoryBoard吗?我仍然收到那个狡猾的'System.Windows.Media.Animation Warning: 6 : Unable to perform action because the specified Storyboard was never applied to this object for interactive control.; Action='Stop';'
消息
Storyboard sb = new Storyboard();
DoubleAnimation forward90 = new DoubleAnimation(0,90,TimeSpan.FromMilliseconds(2000));
DoubleAnimation back90 = new DoubleAnimation(0,-90, TimeSpan.FromMilliseconds(2000));
private void cbo_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
forward90.BeginTime = TimeSpan.Zero;
back90.BeginTime = TimeSpan.Zero;
NameScope.SetNameScope(this, new NameScope());
RegisterName(this.Name, this);
sb.Stop(this);
sb.Remove(this);
sb.Children.Clear();
sb.AccelerationRatio = 0;
sb.DecelerationRatio = 1;
sb.RepeatBehavior = RepeatBehavior.Forever;
int i = cbo.SelectedIndex;
Orientation o = (Orientation)i;
ViewModel vm = this.DataContext as ViewModel;
if(vm !=null)vm.Orient = o;
switch (o)
{
case Orientation.Front0:
break;
case Orientation.Front90:
sb.Children.Add(forward90);
Storyboard.SetTarget(forward90, cube2);
Storyboard.SetTargetProperty(forward90, new PropertyPath(CubeControl.CubeControl.XRotationProperty));
sb.Begin(this, true);
break;
case Orientation.Right0:
sb.Children.Add(back90);
Storyboard.SetTarget(back90, cube2);
Storyboard.SetTargetProperty(back90, new PropertyPath(CubeControl.CubeControl.YRotationProperty));
sb.Begin(this, true);
break;
case Orientation.Right90:
back90.BeginTime = TimeSpan.FromMilliseconds(2000);
sb.Children.Add(forward90);
sb.Children.Add(back90);
Storyboard.SetTarget(back90, cube2);
Storyboard.SetTarget(forward90, cube2);
Storyboard.SetTargetProperty(forward90, new PropertyPath(CubeControl.CubeControl.YRotationProperty));
Storyboard.SetTargetProperty(back90, new PropertyPath(CubeControl.CubeControl.ZRotationProperty));
sb.Begin(this, true);
break;
case Orientation.Top0:
sb.Children.Add(back90);
Storyboard.SetTarget(back90, cube2);
Storyboard.SetTargetProperty(back90, new PropertyPath(CubeControl.CubeControl.ZRotationProperty));
sb.Begin(this, true);
break;
case Orientation.Top90:
back90.BeginTime = TimeSpan.FromMilliseconds(2000);
sb.Children.Add(forward90);
sb.Children.Add(back90);
Storyboard.SetTarget(forward90, cube2);
Storyboard.SetTarget(back90, cube2);
Storyboard.SetTargetProperty(forward90, new PropertyPath(CubeControl.CubeControl.XRotationProperty));
Storyboard.SetTargetProperty(back90, new PropertyPath(CubeControl.CubeControl.ZRotationProperty));
sb.Begin(this, true);
break;
default:
break;
}
}
}
答案 0 :(得分:3)
我相信你需要将cbo传递给begin方法。
这是指当前的类(我猜你的窗口类),而cbo的变化就是控制动画。