Expander Animation
The RadExpander control has an animation enabled by default.
To disable or enable the animation, set the AnimationManager.IsAnimationEnabled attached property on RadExpander.
Example 1: Disabling animation in XAML
Example 2: Disabling animation in code
Customize Animations
To customize RadExpander animations, use the AnimationManager.AnimationSelector property. The supported animation class is ExpanderExpandCollapseAnimation which exposes few properties to customize the animation.
- Direction: An enumeration property of type AnimationDirection which specifies the direction of the animation.
- TargetElementName: A property of type string that gets or sets the name of the element that should be animated.
-
AnimationName: A property of type string that gets or sets the name of the animation. For example:
- ExpandDirection is set to Up or Down: To modify the animation the AnimationName needs to be set to Expand or Collapse.
- ExpandDirection is set to Right or Left: To modify the animation the AnimationName needs to be set to ExpandHorizontal or CollapseHorizontal.
- SpeedRatio: A property of type double that gets or sets the speed of the animation.