'Declaration Public Event ClickDate As ClickDateEventHandler
'Usage Dim instance As GcDropDownCalendar Dim handler As ClickDateEventHandler AddHandler instance.ClickDate, handler
public event ClickDateEventHandler ClickDate
Event Data
The event handler receives an argument of type ClickDateEventArgs containing data related to this event. The following ClickDateEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Date | Gets the clicked date. |
Handled | (Inherited from System.Windows.RoutedEventArgs) |
OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
RoutedEvent | (Inherited from System.Windows.RoutedEventArgs) |
Source | (Inherited from System.Windows.RoutedEventArgs) |
Remarks
This event is raised when mouse clicked on the button of calendar. When DisplayMode is greater than StartDisplayMode, mouse clicked on the button will zoom in calendar which doesn't raise ClickDate event.
See Also