Skip to main content
.NET 6.0+

ListView.ProcessSelectedItem Event

Occurs when double-clicking an object in the current List View.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler ProcessSelectedItem

Event Data

The ProcessSelectedItem event's data class is EventArgs.

Remarks

Do not use this event to perform a custom Action when an object is double-clicked in the List View. This event is designed for internal needs. Instead, access the ListViewProcessCurrentObjectController and handle its ListViewProcessCurrentObjectController.CustomProcessSelectedItem event. To access this Controller, use the GetController<ControllerType> method. For details, refer to the How to: Replace a List View’s Default Action topic.

See Also