Skip to main content

TreeListView.ShowDataNavigator Property

Gets or sets whether to show the data navigator. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public bool ShowDataNavigator { get; set; }

Property Value

Type Description
Boolean

true, to show the data navigator; otherwise, false.

Remarks

The embedded Data Navigator allows users to add and remove rows. Refer to the following help topic for more information: Add and Remove Rows.

To show the Data Navigator, set the ShowDataNavigator property to true.

To add a new row, a user should click the Data Navigator‘s Append (+) button.

To remove a row, a user should focus the row and click the Data Navigator‘s Delete (-) button.

Tip

Use the DataViewBase.DataNavigatorButtons property to specify which buttons to display in the Data Navigator.

Refer to the following help topic for information on how to display grid data across multiple pages: Data Paging.

See Also