1 write to maxSelectionCount
System.Windows.Forms (1)
winforms\Managed\System\WinForms\MonthCalendar.cs (1)
618
maxSelectionCount
= value;
11 references to maxSelectionCount
System.Windows.Forms (11)
winforms\Managed\System\WinForms\MonthCalendar.cs (11)
606
return
maxSelectionCount
;
613
if (value !=
maxSelectionCount
) {
827
if ((value - selectionStart).Days >=
maxSelectionCount
) {
828
selectionStart = value.AddDays(1 -
maxSelectionCount
);
871
if ((selectionEnd - value).Days >=
maxSelectionCount
) {
872
selectionEnd = value.AddDays(
maxSelectionCount
- 1);
1630
if (
maxSelectionCount
!= DEFAULT_MAX_SELECTION_COUNT) {
1631
SendMessage(NativeMethods.MCM_SETMAXSELCOUNT,
maxSelectionCount
, 0);
2113
if ((date2 - date1).Days >=
maxSelectionCount
) {
2118
date1 = date2.AddDays(1 -
maxSelectionCount
);
2123
date2 = date1.AddDays(
maxSelectionCount
- 1);