1 write to Panel1
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
96
Panel1
= new SplitterPanel(this);
86 references to Panel1
Accessibility_Core_App (6)
ContainerControls2.Designer.cs (6)
64
this.splitContainer1.
Panel1
.SuspendLayout();
90
this.splitContainer1.
Panel1
.BackColor = System.Drawing.Color.Silver;
91
this.splitContainer1.
Panel1
.Controls.Add(this.button15);
92
this.splitContainer1.
Panel1
.RightToLeft = System.Windows.Forms.RightToLeft.No;
337
this.splitContainer2.
Panel1
.BackColor = System.Drawing.Color.Green;
442
this.splitContainer1.
Panel1
.ResumeLayout(false);
DesignSurface (6)
MainForm.cs (2)
170
l1.Parent = sct.
Panel1
;
339
SplitterPanel splitterPanel1 = splitContainer.
Panel1
;
MainForm.Designer.cs (4)
58
this.splitContainer.
Panel1
.SuspendLayout();
74
this.splitContainer.
Panel1
.BackColor = System.Drawing.SystemColors.Window;
75
this.splitContainer.
Panel1
.Controls.Add(this.tabControl1);
305
this.splitContainer.
Panel1
.ResumeLayout(false);
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);
System.Windows.Forms.Design.Tests (1)
SplitContainerDesignerTests.cs (1)
44
control.Parent = splitContainer.
Panel1
;
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlTests.Methods.cs (2)
2188
Parent = grandparent.
Panel1
2191
Assert.Same(grandparent, grandparent.
Panel1
.GetContainerControl());
System.Windows.Forms.UI.IntegrationTests (3)
Dpi\SplitContainerTests.cs (3)
23
Assert.NotNull(sc.
Panel1
);
24
Assert.Equal(sc, sc.
Panel1
.Owner);
67
Assert.Equal(splitContainer.SplitterDistance, splitContainer.
Panel1
.Height);
TrimTest (4)
Form1.Designer.cs (4)
39
splitContainer1.
Panel1
.SuspendLayout();
52
splitContainer1.
Panel1
.Controls.Add(textBox1);
104
splitContainer1.
Panel1
.ResumeLayout(false);
105
splitContainer1.
Panel1
.PerformLayout();
WinFormsControlsTest (7)
ScrollableControls.Designer.cs (6)
81
splitContainer1.
Panel1
.SuspendLayout();
222
splitContainer1.
Panel1
.AutoScroll = true;
223
splitContainer1.
Panel1
.Controls.Add(button16);
224
splitContainer1.
Panel1
.Controls.Add(button15);
225
splitContainer1.
Panel1
.Controls.Add(button10);
457
splitContainer1.
Panel1
.ResumeLayout(false);
Splitter.Designer.cs (1)
48
this.splitContainer1.
Panel1
.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));