The EventArgs of the RadCalendar.DisplayModeChanged event.
Definition
Namespace:Telerik.Windows.Controls.Calendar
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
C#
public class CalendarModeChangedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCalendarModeChangedEventArgs
Constructors
Initializes a new instance of the CalendarModeChangedEventArgs class.
C#
public CalendarModeChangedEventArgs(RoutedEvent routedEvent, object source, DisplayMode oldMode, DisplayMode newMode)
The routed event.
sourceobjectThe source that raised the event.
oldModeDisplayModePrevious value of the property, prior to the event being raised.
newModeDisplayModeCurrent value of the property at the time of the event.
Properties
Gets the new mode of the Calendar.
C#
public DisplayMode NewMode { get; }
Gets the previous mode of the Calendar.
C#
public DisplayMode OldMode { get; }