ComponentOne Menus and Toolbars for WinForms
ItemClick Event

C1.Win.C1Command.4 Assembly > C1.Win.C1Command Namespace > C1RadialMenu Class : ItemClick Event
Occurs when a menu item is clicked.
Syntax
'Declaration
 
Public Event ItemClick As RadialMenuItemClickEventHandler
public event RadialMenuItemClickEventHandler ItemClick
Event Data

The event handler receives an argument of type RadialMenuItemClickEventArgs containing data related to this event. The following RadialMenuItemClickEventArgs properties provide information specific to this event.

PropertyDescription
If the clicked item was a C1CommandLink, returns that link; otherwise, returns null.  
Gets the item that was clicked. This may be either an object of a type derived from RadialMenuItemBase, or a C1CommandLink.  
If the clicked item was a RadialMenuItem, returns that item; otherwise, returns null.  
Remarks
If the clicked item has its own Click event associated with it, that event occurs immediately before this one.
See Also