14 writes to SelectedDate
PresentationFramework (14)
System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (2)
777this.OwningCalendar.SelectedDate = Date; 817this.OwningCalendar.SelectedDate = Date;
System\Windows\Controls\DatePicker.cs (1)
493dp._calendar.SelectedDate = (DateTime?)value;
System\Windows\Controls\Primitives\CalendarItem.cs (4)
588this.Owner.SelectedDate = clickedDate; 608this.Owner.SelectedDate = clickedDate; 631this.Owner.SelectedDate = clickedDate; 691this.Owner.SelectedDate = selectedDate;
System\Windows\Controls\SelectedDatesCollection.cs (7)
176this._owner.SelectedDate = item; 235this._owner.SelectedDate = this[0]; 239this._owner.SelectedDate = null; 287this._owner.SelectedDate = item; 362this._owner.SelectedDate = null; 387this._owner.SelectedDate = date; 391this._owner.SelectedDate = null;
16 references to SelectedDate
PresentationFramework (16)
System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
183if (owner.SelectedDate.HasValue && DateTimeHelper.CompareYearMonth(owner.SelectedDate.Value, owner.DisplayDateInternal) == 0) 185focusedDate = owner.SelectedDate.Value;
System\Windows\Controls\Calendar.cs (5)
770if (this.SelectedDate != null) 772return this.SelectedDate.Value.ToString(DateTimeHelper.GetDateFormat(DateTimeHelper.GetCulture(this))); 1225if (c.SelectedDate.HasValue && DateTimeHelper.CompareYearMonth(c.SelectedDate.Value, c.DisplayDateInternal) == 0) 1227c.FocusDate(c.SelectedDate.Value);
System\Windows\Controls\DatePicker.cs (1)
494return dp._calendar.SelectedDate;
System\Windows\Controls\SelectedDatesCollection.cs (7)
174if (index == 0 && !(this._owner.SelectedDate.HasValue && DateTime.Compare(this._owner.SelectedDate.Value, item) == 0)) 285if (index == 0 && !(this._owner.SelectedDate.HasValue && DateTime.Compare(this._owner.SelectedDate.Value, item) == 0)) 360if (this._owner.SelectedDate != null) 385if (!this._owner.SelectedDate.HasValue || DateTimeHelper.CompareDays(this._owner.SelectedDate.Value, date) != 0)