Skip to main content
A newer version of this page is available. .

BaseListBoxControl.ContextButtonClick Event

Fires when a context button is clicked.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v20.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Behavior")]
public event ContextItemClickEventHandler ContextButtonClick

Event Data

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

Property Description
DataItem Gets or sets an Object that contains a clicked ContextItem. This object is a control or a control’s item.
Item Gets a clicked ContextItem.
ItemInfo Gets or sets a clicked ContextItem‘s ContextItemViewInfo.
ScreenBounds Returns a Rectangle that contains a ContextItem.

Remarks

The ContextButtonClick event fires when an end-user clicks any context button (see BaseListBoxControl.ContextButtons). The ContextItemClickEventArgs.Item property allows you to determine the button being clicked.

You can also handle the ContextItem.Click event to respond to a click on a particular button.

Example

private void listBoxControl_ContextButtonClick(object sender, DevExpress.Utils.ContextItemClickEventArgs e) {
    if (e.Item.Name=="Delete") {
        var listBoxControl = (DevExpress.XtraEditors.ListBoxControl)sender;
        listBoxControl.Items.Remove(e.DataItem);                
    }            
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ContextButtonClick event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also