26 writes to Location
System.Windows.Forms (19)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (19)
1645Panel2.Location = new Point(Panel1.WidthInternal + SplitterWidthInternal, 0); 1649Panel1.Location = new Point(Width - Panel1.WidthInternal, 0); 1660Panel2.Location = new Point(0, 0); 1665Panel1.Location = new Point(0, 0); 1680Panel2.Location = new Point(0, panel2Start); 1690Panel2.Location = new Point(0, panel2Start); 1705Panel2.Location = new Point(0, panel2Start); 1716Panel2.Location = new Point(0, 0); 1721Panel1.Location = new Point(0, 0); 2182Panel1.Location = new Point(0, 0); 2183Panel2.Location = new Point(_splitterDistance + SplitterWidthInternal, 0); 2187Panel1.Location = new Point(Width - _splitterDistance, 0); 2188Panel2.Location = new Point(0, 0); 2203Panel2.Location = new Point(0, 0); 2208Panel1.Location = new Point(0, 0); 2223Panel1.Location = new Point(0, 0); 2229Panel2.Location = new Point(0, panel2Start); 2244Panel2.Location = new Point(0, 0); 2249Panel1.Location = new Point(0, 0);
System.Windows.Forms.Tests (7)
System\Windows\Forms\SplitterPanelTests.cs (7)
541control.Location = value; 563control.Location = value; 607control.Location = new Point(1, 2); 613control.Location = new Point(1, 2); 619control.Location = new Point(2, 2); 625control.Location = new Point(2, 3); 633control.Location = new Point(1, 2);
10 references to Location
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
1388r.X = Panel1.Location.X + splitSize; 1405r.Y = Panel1.Location.Y + splitSize;
System.Windows.Forms.Tests (8)
System\Windows\Forms\SplitterPanelTests.cs (8)
80Assert.Equal(Point.Empty, control.Location); 548Assert.Equal(value, control.Location); 570Assert.Equal(value, control.Location); 608Assert.Equal(new Point(1, 2), control.Location); 614Assert.Equal(new Point(1, 2), control.Location); 620Assert.Equal(new Point(2, 2), control.Location); 626Assert.Equal(new Point(2, 3), control.Location); 634Assert.Equal(new Point(1, 2), control.Location);