15 writes to HoverStart
PresentationFramework (15)
System\Windows\Controls\Calendar.cs (6)
395c.HoverStart = c.HoverEnd = null; 629c.HoverStart = c.HoverEnd = null; 1591this.HoverStart = this.HoverEnd = this.CurrentDate; 1616this.HoverStart = this.HoverEnd = this.CurrentDate = lastSelectedDate.Value; 1625this.HoverStart = this.HoverEnd = null; 1648this.HoverStart = this.HoverEnd = null;
System\Windows\Controls\Primitives\CalendarItem.cs (8)
610this.Owner.HoverStart = null; 637this.Owner.HoverStart = null; 666this.Owner.HoverStart = null; 710this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate; 715this.Owner.HoverStart = this.Owner.HoverEnd = selectedDate; 732this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate; 737this.Owner.HoverStart = this.Owner.HoverEnd = selectedDate; 778this.Owner.HoverStart = this.Owner.HoverEnd = null;
System\Windows\Controls\SelectedDatesCollection.cs (1)
138this._owner.HoverStart = null;
16 references to HoverStart
PresentationFramework (16)
System\Windows\Controls\Calendar.cs (6)
1109if (this.HoverStart != null) 1114this.SelectedDates.AddRange(this.HoverStart.Value, this.CurrentDate); 1589if (!this.HoverStart.HasValue) 1597if (DateTime.Compare(this.HoverStart.Value, lastSelectedDate.Value) < 0) 1599range = new CalendarDateRange(this.HoverStart.Value, lastSelectedDate.Value); 1603range = new CalendarDateRange(lastSelectedDate.Value, this.HoverStart.Value);
System\Windows\Controls\Primitives\CalendarItem.cs (10)
521if (this.Owner.HoverStart.HasValue) 525DateTime.Compare(this.Owner.HoverStart.Value, selectedDate) == 0 && 535this.Owner.SelectedDates.AddRangeInternal(this.Owner.HoverStart.Value, selectedDate); 708if (!this.Owner.HoverStart.HasValue) 730if (!this.Owner.HoverStart.HasValue) 837if (this.Owner.HoverStart.HasValue) 1144if (owner.HoverStart.HasValue && owner.HoverEnd.HasValue) 1149int daysToHighlight = DateTimeHelper.CompareDays(owner.HoverEnd.Value, owner.HoverStart.Value); 1152hEnd = owner.HoverStart.Value; 1156hStart = owner.HoverStart.Value;