Animations
Using the Telerik Presentation Framework you can animate almost any element property. To achieve this you should use the AnimatedPropertySetting class. The class constructors takes five arguments:
The first argument of the AnimatedPropertySetting is the RadProperty to animate.
The second one is the start value.
Next is the end value.
The forth argument takes the number of frames.
And the last argument is the time interval between frames in milliseconds
Animate opacity
The following example animates the Opacity property of the RadButton's FillPrimitive, changing it from 1 to 0 (full transparent) and vice versa:
Animate button's Opacity property
Animate margin
Here is how to animate the Margin property of the RadButton's FillPrimitive:
Animate button's Margin property
Animate bounds
You can also animate the Bounds property of a control. Here is how to create a fly-out animation with RadPanel: