Skip to main content
.NET 6.0+

Controller.Activated Event

Occurs when a Controller is activated.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler Activated

Event Data

The Activated event's data class is EventArgs.

Remarks

This event represents the most useful aspect of Controllers. Handle this event to execute custom code when a Controller is activated, for example, to manage the Controller’s Actions visibility and availability. You can also access the current Window and its Action Containers if this Controller is a WindowController class descendant. If it is a ViewController class descendant, you can customize the current View.

Note

View Controllers are activated after setting a View for their ViewController.View property. Window Controllers are activated after setting a Window for their WindowController.Window property.

A Controller is activated when the Controller.Active collection does not have any elements that have the value set to false left.

For details on how to use Controllers, refer to the Controllers topic.

See Also