Skip to main content

GridControl.UseEmbeddedNavigator Property

Gets or sets whether the embedded data navigator is visible.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v24.1.dll

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

Declaration

[Browsable(true)]
[DefaultValue(false)]
[DXCategory("Appearance")]
public virtual bool UseEmbeddedNavigator { get; set; }

Property Value

Type Default Description
Boolean false

true to make the embedded navigator visible; otherwise, false.

Remarks

Set the UseEmbeddedNavigator property to true to display the embedded data navigator at the bottom of the grid control. Use the GridControl.EmbeddedNavigator property to access this navigator’s settings.

public Form1()
{
   InitializeComponent();
  //...
   gridControl1.UseEmbeddedNavigator = true;
}

WinForms Embedded Navigator

You can also use an external data navigator. Place a ControlNavigator control onto the form and use the ControlNavigator.NavigatableControl property to bind the control to your grid.

Watch Video: WinForms Grid: Adding a Popup Warning for Row Deletion

The following code snippets (auto-collected from DevExpress Examples) contain references to the UseEmbeddedNavigator property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also