我想这样做: http://www.youtube.com/watch?v=gTz7jSU-C5I
Storyboard s = new Storyboard();
ModelVisual3D MV = mainViewport.Children.ElementAt(current) as ModelVisual3D;
Model3DGroup cube = MV.Content as Model3DGroup;
for (int j = 0; j < cube.Children.Count; j++)
{
Model3DGroup Point_X= cube.Children[j] as Model3DGroup;
DoubleAnimation doubleAnimation = new DoubleAnimation();
doubleAnimation.To = 2;
doubleAnimation.Duration = new Duration(TimeSpan.FromSeconds(2));
s.Children.Add(doubleAnimation);
s.Duration = new Duration(TimeSpan.FromSeconds(2));
Storyboard.SetTarget(doubleAnimation, cube);
Storyboard.SetTargetProperty(doubleAnimation, new PropertyPath(" ??? "));
s.Begin(); // Exception during the execution.
}