I have recently given an interview. I was asked this question in interview. I read an article [http://bitslot.info/ch13lev1sec1.shtml][1]. This article explain me the types of storyboard. Are active, passive and interactive storyboard are types of storyboard in silverlight?
Share
Types of Animation (Storyboard) in
Silverlight/WPFDoubleAnimation: This will animate a Double Value from one value to another. So if you want to change the Width of a TextBox over time you need DoubleAnimation.
ColorAnimation: Same as the above if the type of Changing element is Color, you need ColorAnimation.
Transformation: This will animate the rendering of the shape (e.g Ractangle).
There are a variety of transformations that can take place, such as stretching, skewing, rotating, etc.
So basically the basis of Animation types is based on the type of the property for which you want your animation to work on.
Animation can also be categorized into two basic ways:
Animation Without KeyFrames: These are animation that only needs two values, From and To. It gives you a smooth animation based on the Timeline.DesiredFramerate property for the animation.
Animation With KeyFrames: Allows you to specify a KeyFrame collection which lets you define the KeyFrame value on a specified time. So that you can adjust your own animation based on specific time intervals.
These references might provide you good information further regarding
Animation (Storyboard)Types and their Usage: