System.Windows.Controls.CalendarModeChangedEventArgs.CalendarModeChangedEventArgs C# (CSharp) 메소드

CalendarModeChangedEventArgs() 공개 메소드

Initializes a new instance of the CalendarModeChangedEventArgs class.
public CalendarModeChangedEventArgs ( CalendarMode oldMode, CalendarMode newMode )
oldMode CalendarMode Previous value of the property, prior to the event being raised.
newMode CalendarMode Current value of the property at the time of the event.
        public CalendarModeChangedEventArgs(CalendarMode oldMode, CalendarMode newMode)
        {
            this.OldMode = oldMode;
            this.NewMode = newMode;
        }
CalendarModeChangedEventArgs