1 write to Panel2
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
99
Panel2
= new SplitterPanel(this);
74 references to Panel2
Accessibility_Core_App (6)
ContainerControls2.Designer.cs (6)
65
this.splitContainer1.
Panel2
.SuspendLayout();
96
this.splitContainer1.
Panel2
.BackColor = System.Drawing.Color.Red;
97
this.splitContainer1.
Panel2
.Controls.Add(this.button16);
98
this.splitContainer1.
Panel2
.RightToLeft = System.Windows.Forms.RightToLeft.No;
341
this.splitContainer2.
Panel2
.BackColor = System.Drawing.Color.Red;
443
this.splitContainer1.
Panel2
.ResumeLayout(false);
DesignSurface (7)
MainForm.cs (4)
171
l2.Parent = sct.
Panel2
;
340
SplitterPanel splitterPanel2 = splitContainer.
Panel2
;
428
splitContainer.
Panel2
.Controls.Remove(propertyGrid);
442
splitContainer.
Panel2
.Controls.Add(propertyGrid);
MainForm.Designer.cs (3)
59
this.splitContainer.
Panel2
.SuspendLayout();
79
this.splitContainer.
Panel2
.Controls.Add(this.propertyGrid);
306
this.splitContainer.
Panel2
.ResumeLayout(false);
System.Windows.Forms (45)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (45)
106
((TypedControlCollection)Controls).AddInternal(
Panel2
);
533
if (value &&
Panel2
.Collapsed)
535
CollapsePanel(
Panel2
, false);
553
return
Panel2
.Collapsed;
557
if (value !=
Panel2
.Collapsed)
564
CollapsePanel(
Panel2
, value);
1160
_nextActiveControl =
Panel2
;
1246
Panel2
.RightToLeft = RightToLeft;
1302
if (value >
Panel2
.Width)
1304
SplitterDistanceInternal =
Panel2
.Width + SplitterWidthInternal; // Set the Splitter Distance to the start of Panel2
1596
Panel2
.SuspendLayout();
1602
Panel2
.Size = new Size(0,
Panel2
.Height);
1608
Panel2
.Size = new Size(
Panel2
.Width, 0);
1620
Panel2
.Size = new Size(Math.Max(Width - _panelSize - SplitterWidthInternal, Panel2MinSize), Height);
1625
Panel2
.Size = new Size(_panelSize, Height);
1640
Panel2
.Size = new Size(Math.Max(Width - _splitterDistance - SplitterWidthInternal, Panel2MinSize), Height);
1645
Panel2
.Location = new Point(Panel1.WidthInternal + SplitterWidthInternal, 0);
1659
Panel2
.Size = Size;
1660
Panel2
.Location = new Point(0, 0);
1679
Panel2
.Size = new Size(Width, Math.Max(Height - panel2Start, Panel2MinSize));
1680
Panel2
.Location = new Point(0, panel2Start);
1685
Panel2
.Size = new Size(Width, _panelSize);
1686
_splitterDistance = Math.Max(Height -
Panel2
.Height - SplitterWidthInternal, Panel1MinSize);
1690
Panel2
.Location = new Point(0, panel2Start);
1704
Panel2
.Size = new Size(Width, Math.Max(Height - panel2Start, Panel2MinSize));
1705
Panel2
.Location = new Point(0, panel2Start);
1715
Panel2
.Size = Size;
1716
Panel2
.Location = new Point(0, 0);
1738
Panel2
.ResumeLayout();
1794
if ((Panel1.Controls.Count > 0 ||
Panel2
.Controls.Count > 0) || TabStop)
1976
_nextActiveControl =
Panel2
;
1986
_nextActiveControl =
Panel2
;
2168
Panel2
.SuspendLayout();
2178
Panel2
.Size = new Size(Width - _splitterDistance - SplitterWidthInternal, Height);
2183
Panel2
.Location = new Point(_splitterDistance + SplitterWidthInternal, 0);
2188
Panel2
.Location = new Point(0, 0);
2202
Panel2
.Size = Size;
2203
Panel2
.Location = new Point(0, 0);
2228
Panel2
.Size = new Size(Width, Height - panel2Start);
2229
Panel2
.Location = new Point(0, panel2Start);
2243
Panel2
.Size = Size;
2244
Panel2
.Location = new Point(0, 0);
2261
Panel2
.ResumeLayout();
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
234
_splitterPanel2 = _splitContainer.
Panel2
;
237
EnableDesignMode(_splitContainer.
Panel2
, Panel2Name);
System.Windows.Forms.UI.IntegrationTests (2)
Dpi\SplitContainerTests.cs (2)
25
Assert.NotNull(sc.
Panel2
);
26
Assert.Equal(sc, sc.
Panel2
.Owner);
TrimTest (4)
Form1.Designer.cs (4)
40
splitContainer1.
Panel2
.SuspendLayout();
56
splitContainer1.
Panel2
.Controls.Add(button1);
57
splitContainer1.
Panel2
.Controls.Add(comboBox1);
106
splitContainer1.
Panel2
.ResumeLayout(false);
WinFormsControlsTest (8)
ScrollableControls.Designer.cs (7)
82
splitContainer1.
Panel2
.SuspendLayout();
229
splitContainer1.
Panel2
.AutoScroll = true;
230
splitContainer1.
Panel2
.Controls.Add(button14);
231
splitContainer1.
Panel2
.Controls.Add(button13);
232
splitContainer1.
Panel2
.Controls.Add(button12);
233
splitContainer1.
Panel2
.Controls.Add(button11);
458
splitContainer1.
Panel2
.ResumeLayout(false);
Splitter.Designer.cs (1)
52
this.splitContainer1.
Panel2
.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));