15 writes to Location
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
4875dialog.Location = location;
System\Windows\Forms\Form.cs (3)
3955Location = p; 3991Location = p; 5424Location = 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)
359_dropDownHolder.Location = editorLocation; 383_dropDownHolder.Location = editorLocation;
System.Windows.Forms.Tests (4)
System\Windows\Forms\FormTests.cs (4)
988form.Location = new Point(10, 11); 993form.Location = new Point(20, 21); 1017form.Location = new Point(10, 11); 1022form.Location = new Point(20, 21);
System.Windows.Forms.UI.IntegrationTests (4)
DragDropTests.cs (1)
593Location = new Point(0, 0),
FormTests.cs (2)
33form.Location = new Point(20, 21); 92form.Location = new Point(20, 21);
RichTextBoxTests.cs (1)
252Location = new Point(100, 100),
14 references to Location
System.Windows.Forms (6)
System\Windows\Forms\Form.cs (5)
920Point loc = Location; 1367Location.X, 1368Location.Y, 6549_restoredWindowBounds.Location = Location; 6555_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)
116Assert.Equal(Point.Empty, control.Location);
System\Windows\Forms\FormTests.cs (5)
118Assert.Equal(Point.Empty, control.Location); 997Assert.NotEqual(new Point(20, 21), form.Location); 1002Assert.Equal(new Point(20, 21), form.Location); 1026Assert.NotEqual(new Point(20, 21), form.Location); 1031Assert.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));