WinRTXamlToolkit.Controls.Calendar.Calendar C# (CSharp) Method

Calendar() public method

Initializes a new instance of the T:WinRTXamlToolkit.Controls.Calendar class.
public Calendar ( ) : System
return System
        public Calendar()
        {
            DefaultStyleKey = typeof(Calendar);
            UpdateDisplayDate(this, this.DisplayDate, DateTime.MinValue);
            GotFocus += new RoutedEventHandler(Calendar_GotFocus);
            LostFocus += new RoutedEventHandler(Calendar_LostFocus);
            IsEnabledChanged += new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
            PointerReleased += new PointerEventHandler(Calendar_PointerReleased);
            BlackoutDates = new CalendarBlackoutDatesCollection(this);
            SelectedDates = new SelectedDatesCollection(this);
            RemovedItems = new List<object>();
        }