Back to Devexpress

ShortcutItemClickEventHandler Delegate

windowsforms-devexpress-dot-xtrabars-6a51ba3f.md

latest1.7 KB
Original Source

ShortcutItemClickEventHandler Delegate

Represents a method that will handle the BarManager.ShortcutItemClick event.

Namespace : DevExpress.XtraBars

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
public delegate void ShortcutItemClickEventHandler(
    object sender,
    ShortcutItemClickEventArgs e
);
vb
Public Delegate Sub ShortcutItemClickEventHandler(
    sender As Object,
    e As ShortcutItemClickEventArgs
)

Parameters

NameTypeDescription
senderObject

The event source. Identifies the Bar Manager that raised the event.

| | e | ShortcutItemClickEventArgs |

A ShortcutItemClickEventArgs object containing event data.

|

Remarks

When creating a ShortcutItemClickEventHandler 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 about event handler delegates, see Events and Delegates in MSDN.

See Also

DevExpress.XtraBars Namespace