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


C1.WPF Namespace > C1SplitButton Class : Click Event
Occurs when a System.Windows.Controls.Button is clicked.
Syntax
'Declaration
 
Public Event Click As System.Windows.RoutedEventHandler
'Usage
 
Dim instance As C1SplitButton
Dim handler As System.Windows.RoutedEventHandler
 
AddHandler instance.Click, handler
public event System.Windows.RoutedEventHandler Click
Event Data

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

PropertyDescription
Gets a reference to the object that raised the event.  
See Also