Skip to main content
.NET 8.0+

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

ListEditor.ProcessSelectedItem Event

Occurs after an object is selected in the List Editor‘s control and an end-user presses Enter or double-clicks the object.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v24.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 Editor’s control. 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