ComponentOne Basic Library for WPF and Silverlight
Click Event (C1MenuItem)


C1.WPF Namespace > C1MenuItem Class : Click Event
Occurs when the C1MenuItem is clicked.
Syntax
'Declaration
 
Public Event Click As System.EventHandler(Of SourcedEventArgs)
'Usage
 
Dim instance As C1MenuItem
Dim handler As System.EventHandler(Of SourcedEventArgs)
 
AddHandler instance.Click, handler
public event System.EventHandler<SourcedEventArgs> Click
Event Data

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

PropertyDescription
Gets or sets the source of the event.  
See Also