XafApplication.DashboardViewCreating Event
Occurs when creating a Dashboard View.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
public event EventHandler<DashboardViewCreatingEventArgs> DashboardViewCreating
#Event Data
The DashboardViewCreating event's data class is DashboardViewCreatingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Is |
Indicates whether a root View must be created.
Inherited from View |
Object |
Returns the Object Space to be used when creating a new View.
Inherited from View |
View |
Specifies the Dashboard View which is created in the Xaf |
View |
Returns the ID of the created View.
Inherited from View |
#Remarks
Handle this event to provide a custom Dashboard View instead of a default one. Use the handler’s ViewCreatingEventArgs.ViewID parameter to get information on the created Dashboard View. To do this use the application’s XafApplication.FindModelView method passing the View ID as a parameter. Create the Dashboard View in the Object Space passed as the handler’s ViewCreatingEventArgs.ObjectSpace parameter.