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

OptionsNavPane.GroupImageShowMode Property

Gets or sets whether a group image is always visible, or visible only when the NavBarControl is collapsed.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v24.2.dll

NuGet Package: DevExpress.Win

#Declaration

[DefaultValue(GroupImageShowMode.Always)]
public GroupImageShowMode GroupImageShowMode { get; set; }

#Property Value

Type Default Description
DevExpress.XtraNavBar.GroupImageShowMode Always

The GroupImageShowMode value that specifies whether a group image is always visible or visible only when the NavBarControl is collapsed.

#Property Paths

You can access this nested property as listed below:

Object Type Path to GroupImageShowMode
NavBarControl
.OptionsNavPane .GroupImageShowMode

#Remarks

The GroupImageShowMode property specifies whether the group image is always visible or visible only when the NavBarControl is collapsed. This property is in effect in the Navigation Pane View.

Group image show mode

Description

GroupImageShowMode.Always

The group image is shown in collapsed and expanded modes.

NavBar_CollapsedWithImage NavBar_ExpandedWithImage

GroupImageShowMode.InCollapsedState

The group image is shown in collapsed mode and is not displayed in expanded mode.

NavBar_CollapsedWithImage NavBar_ExpandedWithoutImage

Use the following properties to specify the group image:

  • LargeImage and LargeImageIndex options accessible in the group’s ImageOptions - to assign a large image to the group.
  • SmallImage and SmallImageIndex options accessible in the group’s ImageOptions - to assign a small image to the group.
See Also