15 writes to HoverStart
PresentationFramework (15)
System\Windows\Controls\Calendar.cs (6)
395c.HoverStart = c.HoverEnd = null; 629c.HoverStart = c.HoverEnd = null; 1589this.HoverStart = this.HoverEnd = this.CurrentDate; 1614this.HoverStart = this.HoverEnd = this.CurrentDate = lastSelectedDate.Value; 1623this.HoverStart = this.HoverEnd = null; 1646this.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)
1107if (this.HoverStart != null) 1112this.SelectedDates.AddRange(this.HoverStart.Value, this.CurrentDate); 1587if (!this.HoverStart.HasValue) 1595if (DateTime.Compare(this.HoverStart.Value, lastSelectedDate.Value) < 0) 1597range = new CalendarDateRange(this.HoverStart.Value, lastSelectedDate.Value); 1601range = 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) 1146if (owner.HoverStart.HasValue && owner.HoverEnd.HasValue) 1151int daysToHighlight = DateTimeHelper.CompareDays(owner.HoverEnd.Value, owner.HoverStart.Value); 1154hEnd = owner.HoverStart.Value; 1158hStart = owner.HoverStart.Value;