26 writes to Location
System.Windows.Forms (19)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (19)
1645
Panel2.
Location
= new Point(Panel1.WidthInternal + SplitterWidthInternal, 0);
1649
Panel1.
Location
= new Point(Width - Panel1.WidthInternal, 0);
1660
Panel2.
Location
= new Point(0, 0);
1665
Panel1.
Location
= new Point(0, 0);
1680
Panel2.
Location
= new Point(0, panel2Start);
1690
Panel2.
Location
= new Point(0, panel2Start);
1705
Panel2.
Location
= new Point(0, panel2Start);
1716
Panel2.
Location
= new Point(0, 0);
1721
Panel1.
Location
= new Point(0, 0);
2182
Panel1.
Location
= new Point(0, 0);
2183
Panel2.
Location
= new Point(_splitterDistance + SplitterWidthInternal, 0);
2187
Panel1.
Location
= new Point(Width - _splitterDistance, 0);
2188
Panel2.
Location
= new Point(0, 0);
2203
Panel2.
Location
= new Point(0, 0);
2208
Panel1.
Location
= new Point(0, 0);
2223
Panel1.
Location
= new Point(0, 0);
2229
Panel2.
Location
= new Point(0, panel2Start);
2244
Panel2.
Location
= new Point(0, 0);
2249
Panel1.
Location
= new Point(0, 0);
System.Windows.Forms.Tests (7)
System\Windows\Forms\SplitterPanelTests.cs (7)
539
control.
Location
= value;
561
control.
Location
= value;
605
control.
Location
= new Point(1, 2);
611
control.
Location
= new Point(1, 2);
617
control.
Location
= new Point(2, 2);
623
control.
Location
= new Point(2, 3);
631
control.
Location
= new Point(1, 2);
10 references to Location
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
1388
r.X = Panel1.
Location
.X + splitSize;
1405
r.Y = Panel1.
Location
.Y + splitSize;
System.Windows.Forms.Tests (8)
System\Windows\Forms\SplitterPanelTests.cs (8)
78
Assert.Equal(Point.Empty, control.
Location
);
546
Assert.Equal(value, control.
Location
);
568
Assert.Equal(value, control.
Location
);
606
Assert.Equal(new Point(1, 2), control.
Location
);
612
Assert.Equal(new Point(1, 2), control.
Location
);
618
Assert.Equal(new Point(2, 2), control.
Location
);
624
Assert.Equal(new Point(2, 3), control.
Location
);
632
Assert.Equal(new Point(1, 2), control.
Location
);