15 writes to Location
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
4871dialog.Location = location;
System\Windows\Forms\Form.cs (3)
3880Location = p; 3916Location = p; 5333Location = new Point(workingArea.X + x, workingArea.Y + y);
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
405set => base.Location = value;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (2)
362_dropDownHolder.Location = editorLocation; 386_dropDownHolder.Location = editorLocation;
System.Windows.Forms.Tests (4)
System\Windows\Forms\FormTests.cs (4)
985form.Location = new Point(10, 11); 990form.Location = new Point(20, 21); 1014form.Location = new Point(10, 11); 1019form.Location = new Point(20, 21);
System.Windows.Forms.UI.IntegrationTests (4)
DragDropTests.cs (1)
537Location = new Point(0, 0),
FormTests.cs (2)
34form.Location = new Point(20, 21); 93form.Location = new Point(20, 21);
RichTextBoxTests.cs (1)
253Location = new Point(100, 100),
14 references to Location
System.Windows.Forms (6)
System\Windows\Forms\Form.cs (5)
923Point loc = Location; 1370Location.X, 1371Location.Y, 6458_restoredWindowBounds.Location = Location; 6464_restoreBounds.Location = Location;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
404get => base.Location;
System.Windows.Forms.Tests (6)
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
114Assert.Equal(Point.Empty, control.Location);
System\Windows\Forms\FormTests.cs (5)
116Assert.Equal(Point.Empty, control.Location); 994Assert.NotEqual(new Point(20, 21), form.Location); 999Assert.Equal(new Point(20, 21), form.Location); 1023Assert.NotEqual(new Point(20, 21), form.Location); 1028Assert.Equal(new Point(20, 21), form.Location);
System.Windows.Forms.UI.IntegrationTests (2)
DragDropTests.cs (2)
168WaitForExplorer(DragDrop, new Point(dragDropForm.Location.X + dragDropForm.Width, dragDropForm.Location.Y));