Skip to main content
.NET Framework 4.6.2+

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.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
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.

#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.

See Also