15 writes to HoverStart
PresentationFramework (15)
System\Windows\Controls\Calendar.cs (6)
394c.HoverStart = c.HoverEnd = null; 628c.HoverStart = c.HoverEnd = null; 1576this.HoverStart = this.HoverEnd = this.CurrentDate; 1601this.HoverStart = this.HoverEnd = this.CurrentDate = lastSelectedDate.Value; 1610this.HoverStart = this.HoverEnd = null; 1633this.HoverStart = this.HoverEnd = null;
System\Windows\Controls\Primitives\CalendarItem.cs (8)
595this.Owner.HoverStart = null; 622this.Owner.HoverStart = null; 651this.Owner.HoverStart = null; 695this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate; 700this.Owner.HoverStart = this.Owner.HoverEnd = selectedDate; 717this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate; 722this.Owner.HoverStart = this.Owner.HoverEnd = selectedDate; 763this.Owner.HoverStart = this.Owner.HoverEnd = null;
System\Windows\Controls\SelectedDatesCollection.cs (1)
137this._owner.HoverStart = null;
16 references to HoverStart
PresentationFramework (16)
System\Windows\Controls\Calendar.cs (6)
1097if (this.HoverStart != null) 1102this.SelectedDates.AddRange(this.HoverStart.Value, this.CurrentDate); 1574if (!this.HoverStart.HasValue) 1582if (DateTime.Compare(this.HoverStart.Value, lastSelectedDate.Value) < 0) 1584range = new CalendarDateRange(this.HoverStart.Value, lastSelectedDate.Value); 1588range = new CalendarDateRange(lastSelectedDate.Value, this.HoverStart.Value);
System\Windows\Controls\Primitives\CalendarItem.cs (10)
506if (this.Owner.HoverStart.HasValue) 510DateTime.Compare(this.Owner.HoverStart.Value, selectedDate) == 0 && 520this.Owner.SelectedDates.AddRangeInternal(this.Owner.HoverStart.Value, selectedDate); 693if (!this.Owner.HoverStart.HasValue) 715if (!this.Owner.HoverStart.HasValue) 822if (this.Owner.HoverStart.HasValue) 1122if (owner.HoverStart.HasValue && owner.HoverEnd.HasValue) 1127int daysToHighlight = DateTimeHelper.CompareDays(owner.HoverEnd.Value, owner.HoverStart.Value); 1130hEnd = owner.HoverStart.Value; 1134hStart = owner.HoverStart.Value;