14 references to VirtualScreen
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
3806
int overhang = toolTip.Location.X + toolTip.Size.Width - SystemInformation.
VirtualScreen
.Width;
System\Windows\Forms\Form.cs (1)
6789
Size virtualScreen = SystemInformation.
VirtualScreen
.Size;
System\Windows\Forms\Screen.cs (1)
61
_bounds = SystemInformation.
VirtualScreen
;
System\Windows\Forms\ToolTip\ToolTip.cs (1)
1581
Rectangle screenBounds = SystemInformation.
VirtualScreen
;
System.Windows.Forms.Design.Tests (4)
System\Windows\Forms\Design\DesignerUtilsTests.cs (4)
169
cursorPoint.X.Should().BeLessThanOrEqualTo(SystemInformation.
VirtualScreen
.Right);
170
cursorPoint.X.Should().BeGreaterThanOrEqualTo(SystemInformation.
VirtualScreen
.Left);
171
cursorPoint.Y.Should().BeLessThanOrEqualTo(SystemInformation.
VirtualScreen
.Bottom);
172
cursorPoint.Y.Should().BeGreaterThanOrEqualTo(SystemInformation.
VirtualScreen
.Top);
System.Windows.Forms.Tests (5)
System\Windows\Forms\CursorTests.cs (3)
209
Rectangle virtualScreen = SystemInformation.
VirtualScreen
;
266
Rectangle virtualScreen = SystemInformation.
VirtualScreen
;
285
Rectangle virtualScreen = SystemInformation.
VirtualScreen
;
System\Windows\Forms\SystemInformationTests.cs (2)
793
Rectangle screen = SystemInformation.
VirtualScreen
;
796
Assert.Equal(screen, SystemInformation.
VirtualScreen
);
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
196
Rectangle vscreen = SystemInformation.
VirtualScreen
;