1

StoryBoard以前在 WPF 中做动画,我DoubleAnimation在其中使用了多个StoryBoard。我想在DoubleAnimation完成后添加一些模型。我尝试使用DoubleAnimation.Completed事件,但仅在整个StoryBoard完成时才触发。我怎样才能做到这一点?谢谢

4

1 回答 1

2

如果您还没有,请添加到您的视图的代码隐藏:

using System.Windows.Media.Media3D;

然后添加(假设您Viewport3D的名称为“mainViewport”:

void AddModel(GeometryModel3D mod)
{
    mainViewport.Children.Add(new ModelVisual3D() { Content = mod });
}

并在您想添加模型时调用。

于 2013-01-12T22:17:21.317 回答