Class CalendarModeChangedEventArgs
Provides data for the DisplayModeChanged event.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.dll
Syntax
public class CalendarModeChangedEventArgs : RoutedEventArgs
Constructors
| Improve this Doc View SourceCalendarModeChangedEventArgs(CalendarMode, CalendarMode)
Initializes a new instance of the CalendarModeChangedEventArgs class.
Declaration
public CalendarModeChangedEventArgs(CalendarMode oldMode, CalendarMode newMode)
Parameters
Type | Name | Description |
---|---|---|
CalendarMode | oldMode | The previous mode. |
CalendarMode | newMode | The new mode. |
Properties
| Improve this Doc View SourceNewMode
Gets the new mode of the Calendar.
Declaration
public CalendarMode NewMode { get; }
Property Value
Type | Description |
---|---|
CalendarMode | A CalendarMode representing the new mode. |
OldMode
Gets the previous mode of the Calendar.
Declaration
public CalendarMode OldMode { get; }
Property Value
Type | Description |
---|---|
CalendarMode | A CalendarMode representing the previous mode. |