Skip to main content

XafApplication.SettingUp Event

Occurs before initializing the XafApplication class instance.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v25.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler<SetupEventArgs> SettingUp

Event Data

The SettingUp event's data class is DevExpress.ExpressApp.SetupEventArgs.

Remarks

This event is raised as a result of calling the XafApplication.Setup method. Handle this event to set custom settings for the XafApplication class instance. To do this, use the handler’s SetupEventArgs.SetupParameters parameter. It provides access to the following: Controllers Manager, module list, connection string, XafApplication.ApplicationName, and XafApplication.ObjectSpaceProvider.

The WinApplication class instance is used in the Windows Forms application project. This class inherits from the XafApplication class.

See Also