Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

NavigationFrame.TransitionManager Property

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

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.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.

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