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)
539control.Location = value; 561control.Location = value; 605control.Location = new Point(1, 2); 611control.Location = new Point(1, 2); 617control.Location = new Point(2, 2); 623control.Location = new Point(2, 3); 631control.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)
78Assert.Equal(Point.Empty, control.Location); 546Assert.Equal(value, control.Location); 568Assert.Equal(value, control.Location); 606Assert.Equal(new Point(1, 2), control.Location); 612Assert.Equal(new Point(1, 2), control.Location); 618Assert.Equal(new Point(2, 2), control.Location); 624Assert.Equal(new Point(2, 3), control.Location); 632Assert.Equal(new Point(1, 2), control.Location);