DialogEditFormBehavior.CreateEditItemViewModel Event
Occurs before a user invokes the dialog edit form. This event allows you to specify a view model for the edit operation.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.1.Extensions.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
Event Data
The CreateEditItemViewModel event's data class is CreateEditItemViewModelArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
GetViewModelAsync | Gets or sets the task that returns the edit operation’s view model. The view model includes an item that you want to edit or add to the GridControl, the data context that describes the edit operation, and the dialog edit form‘s title. |
IsNewItem | Gets whether a user invokes the dialog edit form to add a new item to the GridControl. |
Key | Gets the value of the field assigned to the DialogEditFormBehavior.KeyProperty property. |
ViewModel | Gets or sets the view model used in the edit operation. The view model includes an item that you want to edit or add to the GridControl, the data context that describes the edit operation, and the dialog edit form‘s title. |
Remarks
Before a user invokes the dialog edit form, the behavior raises the CreateEditItemViewModel event and executes the CreateEditItemViewModelCommand.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CreateEditItemViewModel event.
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.