1 write to Panel2
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
99
Panel2
= new SplitterPanel(this);
47 references to Panel2
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
1605
Panel2
.SuspendLayout();
1611
Panel2
.Size = new Size(0,
Panel2
.Height);
1617
Panel2
.Size = new Size(
Panel2
.Width, 0);
1629
Panel2
.Size = new Size(Math.Max(Width - _panelSize - SplitterWidthInternal, Panel2MinSize), Height);
1634
Panel2
.Size = new Size(_panelSize, Height);
1649
Panel2
.Size = new Size(Math.Max(Width - _splitterDistance - SplitterWidthInternal, Panel2MinSize), Height);
1654
Panel2
.Location = new Point(Panel1.WidthInternal + SplitterWidthInternal, 0);
1668
Panel2
.Size = Size;
1669
Panel2
.Location = new Point(0, 0);
1688
Panel2
.Size = new Size(Width, Math.Max(Height - panel2Start, Panel2MinSize));
1689
Panel2
.Location = new Point(0, panel2Start);
1694
Panel2
.Size = new Size(Width, _panelSize);
1695
_splitterDistance = Math.Max(Height -
Panel2
.Height - SplitterWidthInternal, Panel1MinSize);
1699
Panel2
.Location = new Point(0, panel2Start);
1713
Panel2
.Size = new Size(Width, Math.Max(Height - panel2Start, Panel2MinSize));
1714
Panel2
.Location = new Point(0, panel2Start);
1724
Panel2
.Size = Size;
1725
Panel2
.Location = new Point(0, 0);
1747
Panel2
.ResumeLayout();
1803
if ((Panel1.Controls.Count > 0 ||
Panel2
.Controls.Count > 0) || TabStop)
1985
_nextActiveControl =
Panel2
;
1995
_nextActiveControl =
Panel2
;
2177
Panel2
.SuspendLayout();
2187
Panel2
.Size = new Size(Width - _splitterDistance - SplitterWidthInternal, Height);
2192
Panel2
.Location = new Point(_splitterDistance + SplitterWidthInternal, 0);
2197
Panel2
.Location = new Point(0, 0);
2211
Panel2
.Size = Size;
2212
Panel2
.Location = new Point(0, 0);
2237
Panel2
.Size = new Size(Width, Height - panel2Start);
2238
Panel2
.Location = new Point(0, panel2Start);
2252
Panel2
.Size = Size;
2253
Panel2
.Location = new Point(0, 0);
2270
Panel2
.ResumeLayout();
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
234
_splitterPanel2 = _splitContainer.
Panel2
;
237
EnableDesignMode(_splitContainer.
Panel2
, Panel2Name);