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

ViewController.ViewControlsCreated Event

Occurs after the controls have been created for the current Controller’s ViewController.View if the Controller has already been activated.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public event EventHandler ViewControlsCreated

Event Data

The ViewControlsCreated event's data class is EventArgs.

Remarks

Use the ViewController.ViewControlsCreated event if you are working in a Controller‘s designer, or in other scenarios when you need to access controls after a View Controller was activated.

Note

When not working in the scenarios described above, consider handling the ViewItem.ControlCreated event instead. The ViewController.ViewControlsCreated event may fire before all View Items create their controls, for example, if the View Items are on inactive tabs. For more details, see DelayedViewItemsInitialization.

See Also