NavigationFrame.TransitionManager Property
Gets a NavigationFrame‘s TransitionManager object that controls the frame’s animation.
Namespace: DevExpress.XtraBars.Navigation
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
Property Value
Type | Description |
---|---|
TransitionManager | A TransitionManager object that controls the frame’s animation. |
Remarks
To control a NavigationFrame‘s animation, use the AllowTransitionAnimation and AnimationType properties.
using DevExpress.Utils;
using DevExpress.Utils.Animation;
// ...
navigationFrame1.AllowTransitionAnimation = DefaultBoolean.True;
navigationFrame1.TransitionType = Transitions.Comb;
The image below demonstrates the result.
The TransitionManager property gets the TransitionManager object responsible for the NavigationFrame‘s animation. You can use this object to access additional animation settings. For example, you can subscribe to BeforeTransitionStarts and AfterTransitionEnds events.
See Also