DataViewBase.ShowEditor() Method
Activates the focused cell’s inplace editor.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll
NuGet Package: DevExpress.Wpf.Grid.Core
#Declaration
#Remarks
Note
Cell editors can be activated if the view’s Data
To invoke the cell’s editor in code, you should focus the cell and call the ShowEditor method:
tableView.MoveLastRow();
tableView.Grid.CurrentColumn = tableView.Grid.Columns[0];
Dispatcher.BeginInvoke(new Action(() => {
tableView.ShowEditor();
}), DispatcherPriority.Render);
Refer to Focusing for information on how to move cell and row focus.
The ShowEditor method raises the GridViewBase.ShowingEditor event. This event allows you to prevent showing editors for individual cells, thus preventing their values from being edited. After the editor has been shown, the GridControl raises the GridViewBase.ShownEditor event.