1 write to Panel1
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
96
Panel1
= new SplitterPanel(this);
57 references to Panel1
System.Windows.Forms (55)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (55)
105
((TypedControlCollection)Controls).AddInternal(
Panel1
);
527
return
Panel1
.Collapsed;
531
if (value !=
Panel1
.Collapsed)
538
CollapsePanel(
Panel1
, value);
559
if (value &&
Panel1
.Collapsed)
561
CollapsePanel(
Panel1
, false);
669
Panel1
.WidthInternal = SplitterDistance;
690
Panel1
.HeightInternal = SplitterDistance;
1245
Panel1
.RightToLeft = RightToLeft;
1388
r.X =
Panel1
.Location.X + splitSize;
1405
r.Y =
Panel1
.Location.Y + splitSize;
1507
size = Math.Max(
Panel1
.Width + delta, _borderSize);
1512
size = Math.Max(
Panel1
.Width - delta, _borderSize);
1517
size = Math.Max(
Panel1
.Height + delta, _borderSize);
1595
Panel1
.SuspendLayout();
1601
Panel1
.Size = new Size(0,
Panel1
.Height);
1607
Panel1
.Size = new Size(
Panel1
.Width, 0);
1619
Panel1
.Size = new Size(_panelSize, Height);
1627
Panel1
.WidthInternal = _splitterDistance;
1628
Panel1
.HeightInternal = Height;
1638
Panel1
.WidthInternal = _splitterDistance; // Default splitter distance from left or top.
1639
Panel1
.HeightInternal = Height;
1645
Panel2.Location = new Point(
Panel1
.WidthInternal + SplitterWidthInternal, 0);
1649
Panel1
.Location = new Point(Width -
Panel1
.WidthInternal, 0);
1664
Panel1
.Size = Size;
1665
Panel1
.Location = new Point(0, 0);
1677
Panel1
.Size = new Size(Width, _panelSize);
1687
Panel1
.HeightInternal = _splitterDistance;
1688
Panel1
.WidthInternal = Width;
1701
Panel1
.HeightInternal = _splitterDistance; // Default splitter distance from left or top.
1702
Panel1
.WidthInternal = Width;
1720
Panel1
.Size = Size;
1721
Panel1
.Location = new Point(0, 0);
1737
Panel1
.ResumeLayout();
1794
if ((
Panel1
.Controls.Count > 0 || Panel2.Controls.Count > 0) || TabStop)
2167
Panel1
.SuspendLayout();
2176
Panel1
.HeightInternal = Height;
2177
Panel1
.WidthInternal = _splitterDistance; // Default splitter distance from left or top.
2182
Panel1
.Location = new Point(0, 0);
2187
Panel1
.Location = new Point(Width - _splitterDistance, 0);
2195
_ratioWidth = (Width / (double)(
Panel1
.Width) > 0) ? Width / (double)(
Panel1
.Width) : _ratioWidth;
2207
Panel1
.Size = Size;
2208
Panel1
.Location = new Point(0, 0);
2223
Panel1
.Location = new Point(0, 0);
2224
Panel1
.WidthInternal = Width;
2226
Panel1
.HeightInternal = SplitterDistanceInternal; // Default splitter distance from left or top.
2236
_ratioHeight = (Height / (double)(
Panel1
.Height) > 0) ? Height / (double)(
Panel1
.Height) : _ratioHeight;
2248
Panel1
.Size = Size;
2249
Panel1
.Location = new Point(0, 0);
2260
Panel1
.ResumeLayout();
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
233
_splitterPanel1 = _splitContainer.
Panel1
;
236
EnableDesignMode(_splitContainer.
Panel1
, Panel1Name);