7 references to DisplayDateStartInternal
PresentationFramework (7)
System\Windows\Controls\Calendar.cs (1)
1176
return DateTime.Compare((DateTime)value, cal.
DisplayDateStartInternal
) >= 0 && DateTime.Compare((DateTime)value, cal.DisplayDateEndInternal) <= 0;
System\Windows\Controls\Primitives\CalendarItem.cs (6)
1085
if (DateTimeHelper.CompareDays(dateToAdd.Value, this.Owner.
DisplayDateStartInternal
) < 0 || DateTimeHelper.CompareDays(dateToAdd.Value, this.Owner.DisplayDateEndInternal) > 0)
1233
_previousButton.IsEnabled = (DateTimeHelper.CompareDays(this.Owner.
DisplayDateStartInternal
, firstDayOfMonth) < 0);
1263
if (year < this.Owner.
DisplayDateStartInternal
.Year || year > this.Owner.DisplayDateEndInternal.Year)
1307
if (DateTimeHelper.CompareYearMonth(day, this.Owner.
DisplayDateStartInternal
) < 0 || DateTimeHelper.CompareYearMonth(day, this.Owner.DisplayDateEndInternal) > 0)
1345
_previousButton.IsEnabled = (this.Owner.
DisplayDateStartInternal
.Year != DisplayDate.Year);
1374
_previousButton.IsEnabled = (decade > this.Owner.
DisplayDateStartInternal
.Year);