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

NavBarControl.NavigationPaneGroupClientHeight Property

Gets or sets the default minimum height of the client area for the active group when the “NavigationPane” view is applied.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

[DefaultValue(100)]
[XtraSerializableProperty]
public int NavigationPaneGroupClientHeight { get; set; }

#Property Value

Type Default Description
Int32 100

An integer value specifying the default minimum height of the active group’s client area when the “NavigationPane” view is applied.

#Remarks

When the “NavigationPane” view is applied to a navbar, the contents of only one group can be displayed within a NavBar at a time. Other groups are represented by their buttons at the bottom of the control.

NavPane_Overflow

The NavigationPaneGroupClientHeight property controls the default minimum height of the active group’s client area.

If you change the height of the NavBarControl when this view is applied, the NavBar prevents the active group’s height from being set to a value less than the specified minimum height. It tries to maintain the specified minimum by hiding available group buttons to the Overflow panel.

For each group, however, you can provide a greater value for the minimum height than the default one. For this purpose, use the group’s NavBarGroup.GroupClientHeight property. Setting the NavBarGroup.GroupClientHeight property to a smaller value has no effect.

See Also