14 writes to SelectedDate
PresentationFramework (14)
System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (2)
778this.OwningCalendar.SelectedDate = Date; 818this.OwningCalendar.SelectedDate = Date;
System\Windows\Controls\DatePicker.cs (1)
494dp._calendar.SelectedDate = (DateTime?)value;
System\Windows\Controls\Primitives\CalendarItem.cs (4)
589this.Owner.SelectedDate = clickedDate; 609this.Owner.SelectedDate = clickedDate; 632this.Owner.SelectedDate = clickedDate; 692this.Owner.SelectedDate = selectedDate;
System\Windows\Controls\SelectedDatesCollection.cs (7)
177this._owner.SelectedDate = item; 236this._owner.SelectedDate = this[0]; 240this._owner.SelectedDate = null; 288this._owner.SelectedDate = item; 363this._owner.SelectedDate = null; 388this._owner.SelectedDate = date; 392this._owner.SelectedDate = null;
16 references to SelectedDate
PresentationFramework (16)
System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
184if (owner.SelectedDate.HasValue && DateTimeHelper.CompareYearMonth(owner.SelectedDate.Value, owner.DisplayDateInternal) == 0) 186focusedDate = owner.SelectedDate.Value;
System\Windows\Controls\Calendar.cs (5)
771if (this.SelectedDate != null) 773return this.SelectedDate.Value.ToString(DateTimeHelper.GetDateFormat(DateTimeHelper.GetCulture(this))); 1234if (c.SelectedDate.HasValue && DateTimeHelper.CompareYearMonth(c.SelectedDate.Value, c.DisplayDateInternal) == 0) 1236c.FocusDate(c.SelectedDate.Value);
System\Windows\Controls\DatePicker.cs (1)
495return dp._calendar.SelectedDate;
System\Windows\Controls\SelectedDatesCollection.cs (7)
175if (index == 0 && !(this._owner.SelectedDate.HasValue && DateTime.Compare(this._owner.SelectedDate.Value, item) == 0)) 286if (index == 0 && !(this._owner.SelectedDate.HasValue && DateTime.Compare(this._owner.SelectedDate.Value, item) == 0)) 361if (this._owner.SelectedDate != null) 386if (!this._owner.SelectedDate.HasValue || DateTimeHelper.CompareDays(this._owner.SelectedDate.Value, date) != 0)