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

PictureEdit.ContextButtonClick Event

Fires when a context button is clicked.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

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

Event Data

The ContextButtonClick event's data class is DevExpress.Utils.ContextItemClickEventArgs.

Remarks

The ContextButtonClick event fires when an end-user clicks any context button displayed in the current editor (see RepositoryItemPictureEdit.ContextButtons). The ContextItemClickEventArgs.Item property allows you to determine the button being clicked. Handling the ContextButtonClick event allows you to respond to button clicks in a centralized way. You can also handle the ContextItem.Click event to respond to a click on a particular button.

The editor’s ContextButtonClick event is equivalent to the RepositoryItemPictureEdit.ContextButtonClick event available using the PictureEdit.Properties property.

See Also