3 writes to BORDERSIZE
System.Windows.Forms (3)
winforms\Managed\System\WinForms\SplitContainer.cs (3)
383
BORDERSIZE
= 0;
386
BORDERSIZE
= 1;
389
BORDERSIZE
= 4;
8 references to BORDERSIZE
System.Windows.Forms (8)
winforms\Managed\System\WinForms\SplitContainer.cs (8)
1153
splitterDistance = (splitterDistance < Panel1MinSize) ? splitterDistance + SplitterIncrement : Math.Max(splitterDistance,
BORDERSIZE
);
1159
splitterDistance = (splitterDistance + SplitterWidth > Width - Panel2MinSize -
BORDERSIZE
) ? splitterDistance - SplitterIncrement : splitterDistance;
1162
splitterDistance = (splitterDistance + SplitterWidth > Height - Panel2MinSize -
BORDERSIZE
) ? splitterDistance - SplitterIncrement : splitterDistance;
1666
size = Math.Max(panel1.Width + delta,
BORDERSIZE
);
1670
size = Math.Max(panel1.Width - delta,
BORDERSIZE
);
1674
size = Math.Max(panel1.Height + delta,
BORDERSIZE
);
2205
if (size + SplitterWidthInternal <= this.Width - Panel2MinSize -
BORDERSIZE
)
2212
if (size + SplitterWidthInternal <= this.Height - Panel2MinSize -
BORDERSIZE
)