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