2 writes to Start
System.Windows.Forms (2)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarAccessibleObject.cs (1)
90
dateRange.
Start
= displayRange.Start;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1254
Start
= (DateTime)times[0],
29 references to Start
System.Windows.Forms (29)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarAccessibleObject.cs (3)
88
if (_calendarIndex == 0 && displayRange.
Start
< dateRange.
Start
)
90
dateRange.Start = displayRange.
Start
;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarCellAccessibleObject.cs (8)
78
DateTime cellDate = DateRange.
Start
;
169
MONTH_CALDENDAR_MESSAGES_VIEW.MCMV_MONTH => $"{DateRange.
Start
:D}",
170
MONTH_CALDENDAR_MESSAGES_VIEW.MCMV_YEAR => $"{DateRange.
Start
:Y}",
171
MONTH_CALDENDAR_MESSAGES_VIEW.MCMV_DECADE => $"{DateRange.
Start
:yyy}",
172
MONTH_CALDENDAR_MESSAGES_VIEW.MCMV_CENTURY => $"{DateRange.
Start
:yyy} - {DateRange.End:yyy}",
192
_monthCalendarAccessibleObject.SetSelectionRange(DateRange.
Start
, DateRange.End);
212
&& DateRange.
Start
>= _monthCalendarAccessibleObject.SelectionRange.
Start
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarPreviousButtonAccessibleObject.cs (1)
63
&& _monthCalendarAccessibleObject.MinDate < displayRange.
Start
;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarRowAccessibleObject.cs (2)
134
string weekNumber = GetWeekNumber(cell.DateRange.
Start
);
224
_rowIndex, -1, GetWeekNumber(CellsAccessibleObjects.First.Value.DateRange.
Start
));
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (7)
339
DateTime currentDate = displayRange.
Start
;
352
int currentMonthIndex = GetIndexInMonths(displayRange.
Start
, currentDate);
708
set => SetSelectionRange(value.
Start
, value.End);
1084
DateTime start = range.
Start
;
1265
=> GetIndexInMonths(displayRange.
Start
, displayRange.End) + 1;
1983
if (_currentDisplayRange.
Start
!= newRange.
Start
|| _currentDisplayRange.End != newRange.End)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (6)
333
DateTime calendarStart = calendar.DateRange.
Start
;
363
if (date >= cellRange.
Start
&& date <= cellRange.End)
580
return DateTime.Equals(range.
Start
.Date, range.End.Date)
581
? $"{range.
Start
:D}"
582
: $"{range.
Start
:D} - {range.End:D}";
607
return $"{range.
Start
:yyyy} - {range.End:yyyy}";
System\Windows\Forms\Controls\MonthCalendar\SelectionRangeConverter.cs (2)
117
return range.
Start
;
128
return new InstanceDescriptor(ctor, new object[] { range.
Start
, range.End });