Skip to main content
.NET Framework 4.6.2+

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

View.CreateControls() Method

In This Article

Creates controls that visualize a View in a UI.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public void CreateControls()

#Remarks

A view is an abstract UI element. It is visualized via special controls. For DetailView objects, controls of their View Items are created. For ListView objects, a control of their ListView.Editor is created.

The CreateControls method is called when a View needs to be displayed. After creating controls, this method raises the View.ControlsCreated event.

Generally, you do not need to call this method because Views are visualized automatically.

See Also