14 writes to SelectedDate
PresentationFramework (14)
System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (2)
785this.OwningCalendar.SelectedDate = Date; 825this.OwningCalendar.SelectedDate = Date;
System\Windows\Controls\DatePicker.cs (1)
498dp._calendar.SelectedDate = (DateTime?)value;
System\Windows\Controls\Primitives\CalendarItem.cs (4)
594this.Owner.SelectedDate = clickedDate; 614this.Owner.SelectedDate = clickedDate; 637this.Owner.SelectedDate = clickedDate; 697this.Owner.SelectedDate = selectedDate;
System\Windows\Controls\SelectedDatesCollection.cs (7)
181this._owner.SelectedDate = item; 240this._owner.SelectedDate = this[0]; 244this._owner.SelectedDate = null; 292this._owner.SelectedDate = item; 367this._owner.SelectedDate = null; 392this._owner.SelectedDate = date; 396this._owner.SelectedDate = null;
16 references to SelectedDate
PresentationFramework (16)
System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
190if (owner.SelectedDate.HasValue && DateTimeHelper.CompareYearMonth(owner.SelectedDate.Value, owner.DisplayDateInternal) == 0) 192focusedDate = owner.SelectedDate.Value;
System\Windows\Controls\Calendar.cs (5)
775if (this.SelectedDate != null) 777return this.SelectedDate.Value.ToString(DateTimeHelper.GetDateFormat(DateTimeHelper.GetCulture(this))); 1238if (c.SelectedDate.HasValue && DateTimeHelper.CompareYearMonth(c.SelectedDate.Value, c.DisplayDateInternal) == 0) 1240c.FocusDate(c.SelectedDate.Value);
System\Windows\Controls\DatePicker.cs (1)
499return dp._calendar.SelectedDate;
System\Windows\Controls\SelectedDatesCollection.cs (7)
179if (index == 0 && !(this._owner.SelectedDate.HasValue && DateTime.Compare(this._owner.SelectedDate.Value, item) == 0)) 290if (index == 0 && !(this._owner.SelectedDate.HasValue && DateTime.Compare(this._owner.SelectedDate.Value, item) == 0)) 365if (this._owner.SelectedDate != null) 390if (!this._owner.SelectedDate.HasValue || DateTimeHelper.CompareDays(this._owner.SelectedDate.Value, date) != 0)