Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GridOptionsEditForm.CustomEditFormLayout Property

Gets or sets the custom user control used as an Edit Form.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

[Browsable(false)]
[DefaultValue(null)]
public virtual UserControl CustomEditFormLayout { get; set; }

#Property Value

Type Default Description
UserControl null

The custom user control used as an Edit Form.

#Property Paths

You can access this nested property as listed below:

Object Type Path to CustomEditFormLayout
GridView
.OptionsEditForm .CustomEditFormLayout

#Remarks

If a user control is assigned to the CustomEditFormLayout property, it is used as an Edit Form. The EditFormUserControl is the base class to create a custom Edit Form. For an in-depth discussion, see the Modify and Validate Cell Values topic.

The following picture shows an example of the custom Edit Form:

GridOptionsBehavior_EditingMode_EditForm_CustomLayout

See Also