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);
1604
Panel1
.SuspendLayout();
1610
Panel1
.Size = new Size(0,
Panel1
.Height);
1616
Panel1
.Size = new Size(
Panel1
.Width, 0);
1628
Panel1
.Size = new Size(_panelSize, Height);
1636
Panel1
.WidthInternal = _splitterDistance;
1637
Panel1
.HeightInternal = Height;
1647
Panel1
.WidthInternal = _splitterDistance; // Default splitter distance from left or top.
1648
Panel1
.HeightInternal = Height;
1654
Panel2.Location = new Point(
Panel1
.WidthInternal + SplitterWidthInternal, 0);
1658
Panel1
.Location = new Point(Width -
Panel1
.WidthInternal, 0);
1673
Panel1
.Size = Size;
1674
Panel1
.Location = new Point(0, 0);
1686
Panel1
.Size = new Size(Width, _panelSize);
1696
Panel1
.HeightInternal = _splitterDistance;
1697
Panel1
.WidthInternal = Width;
1710
Panel1
.HeightInternal = _splitterDistance; // Default splitter distance from left or top.
1711
Panel1
.WidthInternal = Width;
1729
Panel1
.Size = Size;
1730
Panel1
.Location = new Point(0, 0);
1746
Panel1
.ResumeLayout();
1803
if ((
Panel1
.Controls.Count > 0 || Panel2.Controls.Count > 0) || TabStop)
2176
Panel1
.SuspendLayout();
2185
Panel1
.HeightInternal = Height;
2186
Panel1
.WidthInternal = _splitterDistance; // Default splitter distance from left or top.
2191
Panel1
.Location = new Point(0, 0);
2196
Panel1
.Location = new Point(Width - _splitterDistance, 0);
2204
_ratioWidth = (Width / (double)(
Panel1
.Width) > 0) ? Width / (double)(
Panel1
.Width) : _ratioWidth;
2216
Panel1
.Size = Size;
2217
Panel1
.Location = new Point(0, 0);
2232
Panel1
.Location = new Point(0, 0);
2233
Panel1
.WidthInternal = Width;
2235
Panel1
.HeightInternal = SplitterDistanceInternal; // Default splitter distance from left or top.
2245
_ratioHeight = (Height / (double)(
Panel1
.Height) > 0) ? Height / (double)(
Panel1
.Height) : _ratioHeight;
2257
Panel1
.Size = Size;
2258
Panel1
.Location = new Point(0, 0);
2269
Panel1
.ResumeLayout();
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
233
_splitterPanel1 = _splitContainer.
Panel1
;
236
EnableDesignMode(_splitContainer.
Panel1
, Panel1Name);