Skip to main content

BaseLayoutItem.Click Event

Fires when the current item is clicked.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Action")]
public event EventHandler Click

Event Data

The Click event's data class is EventArgs.

Remarks

To perform specific actions when any item is clicked, you can handle the LayoutControl’s MouseClick event, rather than handle the Click event for each layout item. While handling the Click event, you may need to identify the item that has been clicked. To do this, get hit information on the clicked point via the LayoutControl.CalcHitInfo method. The BaseLayoutItemHitInfo.Item property will refer to the target item.

See Also