14 references to Border3DSize
System.Windows.Forms (14)
winforms\Managed\System\WinForms\ComboBox.cs (1)
983
int dyEdit = textExtent.Height + SystemInformation.
Border3DSize
.Height;
winforms\Managed\System\WinForms\ControlPaint.cs (1)
964
Size sz = SystemInformation.
Border3DSize
;
winforms\Managed\System\WinForms\DataGrid.cs (1)
587
return SystemInformation.
Border3DSize
.Width;
winforms\Managed\System\WinForms\DataGridView.cs (1)
1457
return Application.RenderWithVisualStyles ? 1 : SystemInformation.
Border3DSize
.Width;
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (4)
796
valBounds.Inflate(-SystemInformation.
Border3DSize
.Width, -SystemInformation.
Border3DSize
.Height);
938
valBounds.Width > 2 * SystemInformation.
Border3DSize
.Width + 1 &&
939
valBounds.Height > 2 * SystemInformation.
Border3DSize
.Height + 1)
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (3)
815
checkBoxSize = SystemInformation.
Border3DSize
.Width * 2 + 9 + 2 * DATAGRIDVIEWCHECKBOXCELL_margin;
1294
checkBoxSize = new Size(SystemInformation.
Border3DSize
.Width * 2 + 9, SystemInformation.
Border3DSize
.Width * 2 + 9);
winforms\Managed\System\WinForms\StatusBar.cs (1)
1002
int border = SystemInformation.
Border3DSize
.Width;
winforms\Managed\System\WinForms\ToolBar.cs (1)
740
height += SystemInformation.
Border3DSize
.Height;
winforms\Managed\System\WinForms\ToolBarButton.cs (1)
472
Size edge = SystemInformation.
Border3DSize
;