Skip to main content

NavigationFrame.TransitionManager Property

Gets a NavigationFrame‘s TransitionManager object that controls the frame’s animation.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Advanced)]
public TransitionManager TransitionManager { get; }

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.

Animation

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