expressappframework-devexpress-dot-expressapp-dot-xafapplication-6aab95a3.md
Occurs when creating a Dashboard View.
Namespace : DevExpress.ExpressApp
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
public event EventHandler<DashboardViewCreatingEventArgs> DashboardViewCreating
Public Event DashboardViewCreating As EventHandler(Of DashboardViewCreatingEventArgs)
The DashboardViewCreating event's data class is DashboardViewCreatingEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| IsRoot | Indicates whether a root View must be created. Inherited from ViewCreatingEventArgs. |
| ObjectSpace | Returns the Object Space to be used when creating a new View. Inherited from ViewCreatingEventArgs. |
| View | Specifies the Dashboard View which is created in the XafApplication.DashboardViewCreating event. |
| ViewID | Returns the ID of the created View. Inherited from ViewCreatingEventArgs. |
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.
See Also