WinRTXamlToolkit.Controls.Calendar.Calendar C# (CSharp) 메소드

Calendar() 공개 메소드

Initializes a new instance of the T:WinRTXamlToolkit.Controls.Calendar class.
public Calendar ( ) : System
리턴 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>();
        }