Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

XafApplication.ListViewCreated Event

Occurs after a List View has been created.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v20.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler<ListViewCreatedEventArgs> ListViewCreated

Event Data

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

Property Description
ListView Specifies the List View to be customized in the XafApplication.ListViewCreated event.
View Specifies the View to be customized in the XafApplication.ViewCreated event. Inherited from ViewCreatedEventArgs.

Remarks

Handle this event to customize a ListView that has been created via the XafApplication.CreateListView method. This List View is specified by the handler’s ListViewCreatedEventArgs.ListView parameter.

See Also