15 writes to HoverStart
PresentationFramework (15)
System\Windows\Controls\Calendar.cs (6)
399c.HoverStart = c.HoverEnd = null; 633c.HoverStart = c.HoverEnd = null; 1595this.HoverStart = this.HoverEnd = this.CurrentDate; 1620this.HoverStart = this.HoverEnd = this.CurrentDate = lastSelectedDate.Value; 1629this.HoverStart = this.HoverEnd = null; 1652this.HoverStart = this.HoverEnd = null;
System\Windows\Controls\Primitives\CalendarItem.cs (8)
615this.Owner.HoverStart = null; 642this.Owner.HoverStart = null; 671this.Owner.HoverStart = null; 715this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate; 720this.Owner.HoverStart = this.Owner.HoverEnd = selectedDate; 737this.Owner.HoverStart = this.Owner.HoverEnd = this.Owner.CurrentDate; 742this.Owner.HoverStart = this.Owner.HoverEnd = selectedDate; 783this.Owner.HoverStart = this.Owner.HoverEnd = null;
System\Windows\Controls\SelectedDatesCollection.cs (1)
142this._owner.HoverStart = null;
16 references to HoverStart
PresentationFramework (16)
System\Windows\Controls\Calendar.cs (6)
1113if (this.HoverStart != null) 1118this.SelectedDates.AddRange(this.HoverStart.Value, this.CurrentDate); 1593if (!this.HoverStart.HasValue) 1601if (DateTime.Compare(this.HoverStart.Value, lastSelectedDate.Value) < 0) 1603range = new CalendarDateRange(this.HoverStart.Value, lastSelectedDate.Value); 1607range = new CalendarDateRange(lastSelectedDate.Value, this.HoverStart.Value);
System\Windows\Controls\Primitives\CalendarItem.cs (10)
526if (this.Owner.HoverStart.HasValue) 530DateTime.Compare(this.Owner.HoverStart.Value, selectedDate) == 0 && 540this.Owner.SelectedDates.AddRangeInternal(this.Owner.HoverStart.Value, selectedDate); 713if (!this.Owner.HoverStart.HasValue) 735if (!this.Owner.HoverStart.HasValue) 842if (this.Owner.HoverStart.HasValue) 1149if (owner.HoverStart.HasValue && owner.HoverEnd.HasValue) 1154int daysToHighlight = DateTimeHelper.CompareDays(owner.HoverEnd.Value, owner.HoverStart.Value); 1157hEnd = owner.HoverStart.Value; 1161hStart = owner.HoverStart.Value;