'Declaration Public Event DisplayModeChanged As CalendarModeChangedEventHandler
'Usage Dim instance As GcDropDownCalendar Dim handler As CalendarModeChangedEventHandler AddHandler instance.DisplayModeChanged, handler
public event CalendarModeChangedEventHandler DisplayModeChanged
Event Data
The event handler receives an argument of type CalendarModeChangedEventArgs containing data related to this event. The following CalendarModeChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Handled | (Inherited from System.Windows.RoutedEventArgs) |
NewMode | Gets the new mode of the GcDropDownCalendar. |
OldMode | Gets the previous mode of the GcDropDownCalendar. |
OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
RoutedEvent | (Inherited from System.Windows.RoutedEventArgs) |
Source | (Inherited from System.Windows.RoutedEventArgs) |
Remarks
This event is raised if the DisplayMode property changed, and it can be changed not only by user interaction but also by binding as well as other set values.
See Also