Skip to main content

NavBarControl.NavPaneOptionsReset Event

Fires when the Reset button in the Navigation Pane Options dialog is clicked.

Namespace: DevExpress.XtraNavBar

Assembly: DevExpress.XtraNavBar.v23.2.dll

NuGet Packages: DevExpress.Win, DevExpress.Win.Navigation

Declaration

public event EventHandler<NavPaneOptionsResetEventArgs> NavPaneOptionsReset

Event Data

The NavPaneOptionsReset event's data class is DevExpress.XtraNavBar.NavPaneOptionsResetEventArgs.

Remarks

An end-user can change the order of groups and edit font settings of items within groups via the Navigation Pane Options dialog, which is available if the OptionsNavPane.AllowOptionsMenuItem property is set to true.

NavPaneOptionsDialog1

Clicking the Reset button in the Navigation Pane Options dialog resets the group order. For regular groups (whose NavBarGroup.GroupStyle properties are not set to NavBarGroupStyle.ControlContainer), this also resets the appearance of items.

To perform additional customizations when the Reset button is clicked, handle the NavPaneOptionsReset event.

See Also