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)
541
control.
Location
= value;
563
control.
Location
= value;
607
control.
Location
= new Point(1, 2);
613
control.
Location
= new Point(1, 2);
619
control.
Location
= new Point(2, 2);
625
control.
Location
= new Point(2, 3);
633
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)
80
Assert.Equal(Point.Empty, control.
Location
);
548
Assert.Equal(value, control.
Location
);
570
Assert.Equal(value, control.
Location
);
608
Assert.Equal(new Point(1, 2), control.
Location
);
614
Assert.Equal(new Point(1, 2), control.
Location
);
620
Assert.Equal(new Point(2, 2), control.
Location
);
626
Assert.Equal(new Point(2, 3), control.
Location
);
634
Assert.Equal(new Point(1, 2), control.
Location
);