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

NavigationPane.State Property

Gets or sets this NavigationPane‘s current state.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(NavigationPaneState.Default)]
[DXCategory("Behavior")]
public virtual NavigationPaneState State { get; set; }

#Property Value

Type Default Description
DevExpress.XtraBars.Navigation.NavigationPaneState Default

A DevExpress.XtraBars.Navigation.NavigationPaneState enumerator value that is this NavigationPane‘s current state.

#Remarks

Depending on the State property value, the NavigationPane can be in three unique states:

  • Regular - the content area is visible and occupies the size specified by the NavigationPane.RegularSize property;
  • Expanded - the content area is visible and occupies all available space, specified by the MaximumSize property;
  • Collapsed - the content area is collapsed, only the column with page headers is visible;
  • Default - equal to the Regular state.
See Also