14 references to Border3DSize
System.Windows.Forms (10)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
824int dyEdit = textExtent.Height + SystemInformation.Border3DSize.Height;
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
1115return Application.RenderWithVisualStyles ? 1 : SystemInformation.Border3DSize.Width;
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (4)
757valBounds.Inflate(-SystemInformation.Border3DSize.Width, -SystemInformation.Border3DSize.Height); 884valBounds.Width > 2 * SystemInformation.Border3DSize.Width + 1 && 885valBounds.Height > 2 * SystemInformation.Border3DSize.Height + 1)
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (3)
701_ => SystemInformation.Border3DSize.Width * 2 + 9 + 2 * DATAGRIDVIEWCHECKBOXCELL_margin, 1193checkBoxSize = new Size(SystemInformation.Border3DSize.Width * 2 + 9, SystemInformation.Border3DSize.Width * 2 + 9);
System\Windows\Forms\Rendering\ControlPaint.cs (1)
1037Size sz = SystemInformation.Border3DSize;
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (2)
72int XBORDER = SystemInformation.Border3DSize.Width; 73int YBORDER = SystemInformation.Border3DSize.Height;
System.Windows.Forms.Tests (2)
System\Windows\Forms\SystemInformationTests.cs (2)
48Size size = SystemInformation.Border3DSize; 51Assert.Equal(size, SystemInformation.Border3DSize);