Skip to main content
A newer version of this page is available. .

ListView.EditView Property

Provides access to the Detail View that is displayed together with a List View.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public DetailView EditView { get; }

Property Value

Type Description
DetailView

The DetailView object representing a detail view displayed with the current list view.

Remarks

A List View is displayed together with a Detail View when the IModelListView.MasterDetailMode property of the appropriate Views | <ListView> node is set to the ListViewAndDetailView value. In this scenario, the Detail View represents the object currently focused in the List View’s List Editor:

Tutorial_UIC_Lesson17_2

The EditView property allows you to customize the Detail View (use CompositeView.Items, CompositeView.LayoutManager, DetailView.Model, etc. properties).

To be notified when the Detail View is created, handle the ListView.EditViewCreated event.

See Also