Back to Devexpress

TableView.EditFormShowMode Property

wpf-devexpress-dot-xpf-dot-grid-dot-tableview-57a68c98.md

latest3.6 KB
Original Source

TableView.EditFormShowMode Property

Specifies whether and how the Edit Form is displayed. This is a dependency property.

Namespace : DevExpress.Xpf.Grid

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

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public EditFormShowMode EditFormShowMode { get; set; }
vb
Public Property EditFormShowMode As EditFormShowMode

Property Value

TypeDescription
EditFormShowMode

An EditFormShowMode enumeration value.

|

Available values:

NameDescription
Dialog

The Inline Edit Form is shown as a popup dialog window.

| | Inline |

The Inline Edit Form is shown below the row that is being edited.

| | InlineHideRow |

The Inline Edit Form replaces the row that is being edited.

| | None |

The Inline Edit Form is disabled.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the EditFormShowMode 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.

wpf-data-grid-edit-form-related-cells/CS/SynchronizeEditValuesInEditForm_CodeBehind/MainWindow.xaml#L19

xml
<dxg:GridControl.View>
    <dxg:TableView EditFormShowMode="Inline" RowEditStarting="OnRowEditStarting" CellValueChanging="OnEditFormCellValueChanging"/>
</dxg:GridControl.View>

wpf-data-grid-edit-form-pause-updates/CS/LockOnRowEdit_CodeBehind/MainWindow.xaml#L13

xml
<dxg:GridControl.View>
    <dxg:TableView x:Name="view" EditFormShowMode="Inline" RowEditStarted="OnRowEditStarted" RowEditFinished="OnRowEditFinished"/>
</dxg:GridControl.View>

wpf-data-grid-specify-edit-form-settings/CS/DefineEditFormSettings_CodeBehind/MainWindow.xaml#L13

xml
<dxg:GridControl.View>
    <dxg:TableView x:Name="view" EditFormShowMode="InlineHideRow" NewItemRowPosition="Top" RowEditStarting="OnRowEditStarting"/>
</dxg:GridControl.View>

See Also

Edit Entire Row

Edit and Validate Data

TableView Class

TableView Members

DevExpress.Xpf.Grid Namespace