11 writes to CurrentDate
PresentationFramework (11)
System\Windows\Controls\Calendar.cs (7)
400c.CurrentDate = c.DisplayDate; 573c.CurrentDate = addedDate.Value; 765this.CurrentDate = this.DisplayDate; 902this.CurrentDate = selectedDate; 1005this.CurrentDate = d; 1620this.HoverStart = this.HoverEnd = this.CurrentDate = lastSelectedDate.Value; 1628this.CurrentDate = lastSelectedDate.Value;
System\Windows\Controls\Primitives\CalendarItem.cs (3)
524this.Owner.CurrentDate = selectedDate; 749this.Owner.CurrentDate = selectedDate; 798this.Owner.CurrentDate = selectedDate;
System\Windows\Controls\SelectedDatesCollection.cs (1)
337this._owner.CurrentDate = lastAddedDate;
17 references to CurrentDate
PresentationFramework (17)
System\Windows\Controls\Calendar.cs (13)
411c.SetCurrentValueInternal(DisplayDateProperty, c.CurrentDate); 958FocusDate(this.DisplayMode == CalendarMode.Month ? this.CurrentDate : this.DisplayDate); 1118this.SelectedDates.AddRange(this.HoverStart.Value, this.CurrentDate); 1257CalendarDayButton currentDayButton = (MonthControl != null) ? MonthControl.GetCalendarDayButton(this.CurrentDate) : null; 1259if (DateTimeHelper.CompareYearMonth(this.CurrentDate, this.DisplayDateInternal) != 0 && currentDayButton != null && !currentDayButton.IsInactive) 1336DateTime? selectedDate = this._blackoutDates.GetNonBlackoutDate(DateTimeHelper.AddDays(this.CurrentDate, COLS), 1); 1474DateTime? selectedDate = this._blackoutDates.GetNonBlackoutDate(DateTimeHelper.AddDays(this.CurrentDate, moveAmmount), moveAmmount); 1501DateTime? selectedDate = this._blackoutDates.GetNonBlackoutDate(DateTimeHelper.AddMonths(this.CurrentDate, 1), 1); 1528DateTime? selectedDate = this._blackoutDates.GetNonBlackoutDate(DateTimeHelper.AddMonths(this.CurrentDate, -1), -1); 1556DateTime? selectedDate = this._blackoutDates.GetNonBlackoutDate(DateTimeHelper.AddDays(this.CurrentDate, moveAmmount), moveAmmount); 1595this.HoverStart = this.HoverEnd = this.CurrentDate; 1616OnDayClick(this.CurrentDate); 1669DateTime? selectedDate = this._blackoutDates.GetNonBlackoutDate(DateTimeHelper.AddDays(this.CurrentDate, -COLS), -1);
System\Windows\Controls\Primitives\CalendarItem.cs (4)
606DateTime? lastDate = this.Owner.CurrentDate; 631this.Owner.SelectedDates.AddRangeInternal(this.Owner.CurrentDate, clickedDate); 715this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate; 737this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate;