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

XafApplication.CreateCustomLogonWindowControllers Event

Occurs when creating Controllers for a Logon Window.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public event EventHandler<CreateCustomLogonWindowControllersEventArgs> CreateCustomLogonWindowControllers

#Event Data

The CreateCustomLogonWindowControllers event's data class is CreateCustomLogonWindowControllersEventArgs. The following properties provide information specific to this event:

Property Description
Controllers Specifies custom Controllers that must be created in the Logon Window in addition to system Controllers.

#Remarks

A limited set of required built-in Controllers is activated for a Logon Window (e.g., FillActionContainersController, DiagnosticInfoController, Controllers of the Validation and Conditional Appearance modules, etc.). Handle this event to create the required Controllers in addition to the system’s Controllers. Add these Controllers to the list passed as the handler’s Controllers parameter. An example of handling the CreateCustomLogonWindowControllers event is provided in the Logon Form Controllers and Actions topic.

See Also