Skip to main content
.NET 8.0+

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

ListEditor.CreateControls() Method

Creates the current List Editor‘s control that represents a List View in a UI.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public object CreateControls()

#Returns

Type Description
Object

An object which represents the current List Editor’s control.

#Remarks

This method is automatically called by a List View when it needs to create its List Editor. For instance, this method is called when a List View is visualized or the Application Model’s node which stores the List Editor’s settings is changed. Generally, you do not have to call this method manually.

When deriving from the ListEditor class, override the protected CreateControlsCore method to create a List Editor’s control (see ListEditor).

See Also