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

NavigatorButtonType Enum

Specifies the options for displaying buttons within the Data Navigator.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

[Flags]
public enum NavigatorButtonType

#Members

Name Description
MoveFirstRow

The button that allows end-users to navigate to the first grid’s row is displayed within the Data Navigator.

wpf_datanavigator_buttons_first

MovePrevPage

The button that allows end-users to navigate to the grid’s previous page is displayed within the Data Navigator.

wpf_datanavigator_buttons_previouspage

MovePrevRow

The button that allows end-users to navigate to the grid’s previous row is displayed within the Data Navigator.

wpf_datanavigator_buttons_previous

MoveNextRow

The button that allows end-users to navigate to the grid’s next row is displayed within the Data Navigator.

wpf_datanavigator_buttons_next

MoveNextPage

The button that allows end-users to navigate to the grid’s new page is displayed within the Data Navigator.

wpf_datanavigator_buttons_nextpage

MoveLastRow

The button that allows end-users to navigate to the last grid’s row is displayed within the Data Navigator.

wpf_datanavigator_buttons_last

AddNewRow

The button that allows end-users to add a new row is displayed within the Data Navigator.

wpf_datanavigator_buttons_append

DeleteFocusedRow

The button that allows end-users to delete a focused row is displayed within the Data Navigator.

wpf_datanavigator_buttons_delete

EditFocusedRow

The button that allows end-users to edit a focused row is displayed within the Data Navigator.

wpf_datanavigator_buttons_edit

All

All the buttons are displayed within the Data Navigator.

Navigation

The buttons related to data navigation are displayed within the Data Navigator.

Editing

The buttons related to data editing are displayed within the Data Navigator.

#Related API Members

The following properties accept/return NavigatorButtonType values:

#Remarks

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

See Also