protected INTERNAL_DateTimePickerBase()
 {
     _calendarOrClock = GenerateCalendarOrClock();
     _calendarOrClock.SelectionChanged += new EventHandler <SelectionChangedEventArgs>(CalendarOrClock_SelectionChanged);
     INTERNAL_SelectedDate              = null;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the CalendarSelectedDatesCollection class.
 /// </summary>
 /// <param name="owner"></param>
 public SelectedDatesCollection(INTERNAL_CalendarOrClockBase owner)
 {
     this._owner        = owner;
     this._addedItems   = new Collection <object>();
     this._removedItems = new Collection <object>();
 }