Skip to main content

LayoutMenuEventHandler Delegate

OBSOLETE

You should use the 'PopupMenuShowingEventHandler' instead

Represents a method for handling the LayoutControl.PopupMenuShowing event.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("You should use the 'PopupMenuShowingEventHandler' instead", false)]
public delegate void LayoutMenuEventHandler(
    object sender,
    LayoutMenuEventArgs e
);

Parameters

Name Type Description
sender Object

The event source. This identifies the LayoutControl control which fires the event.

e LayoutMenuEventArgs

A LayoutMenuEventArgs object that contains data for the event.

Remarks

When creating a LayoutMenuEventHandler delegate, you identify the method that will handle the corresponding event. To associate an event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs unless you remove the delegate. For more information on event handler delegates, see Events and Delegates in MSDN.

See Also