1 write to Panel1
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
96Panel1 = new SplitterPanel(this);
86 references to Panel1
Accessibility_Core_App (6)
ContainerControls2.Designer.cs (6)
64this.splitContainer1.Panel1.SuspendLayout(); 90this.splitContainer1.Panel1.BackColor = System.Drawing.Color.Silver; 91this.splitContainer1.Panel1.Controls.Add(this.button15); 92this.splitContainer1.Panel1.RightToLeft = System.Windows.Forms.RightToLeft.No; 337this.splitContainer2.Panel1.BackColor = System.Drawing.Color.Green; 442this.splitContainer1.Panel1.ResumeLayout(false);
DesignSurface (6)
MainForm.cs (2)
170l1.Parent = sct.Panel1; 339SplitterPanel splitterPanel1 = splitContainer.Panel1;
MainForm.Designer.cs (4)
58this.splitContainer.Panel1.SuspendLayout(); 74this.splitContainer.Panel1.BackColor = System.Drawing.SystemColors.Window; 75this.splitContainer.Panel1.Controls.Add(this.tabControl1); 305this.splitContainer.Panel1.ResumeLayout(false);
System.Windows.Forms (55)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (55)
105((TypedControlCollection)Controls).AddInternal(Panel1); 527return Panel1.Collapsed; 531if (value != Panel1.Collapsed) 538CollapsePanel(Panel1, value); 559if (value && Panel1.Collapsed) 561CollapsePanel(Panel1, false); 669Panel1.WidthInternal = SplitterDistance; 690Panel1.HeightInternal = SplitterDistance; 1245Panel1.RightToLeft = RightToLeft; 1388r.X = Panel1.Location.X + splitSize; 1405r.Y = Panel1.Location.Y + splitSize; 1507size = Math.Max(Panel1.Width + delta, _borderSize); 1512size = Math.Max(Panel1.Width - delta, _borderSize); 1517size = Math.Max(Panel1.Height + delta, _borderSize); 1595Panel1.SuspendLayout(); 1601Panel1.Size = new Size(0, Panel1.Height); 1607Panel1.Size = new Size(Panel1.Width, 0); 1619Panel1.Size = new Size(_panelSize, Height); 1627Panel1.WidthInternal = _splitterDistance; 1628Panel1.HeightInternal = Height; 1638Panel1.WidthInternal = _splitterDistance; // Default splitter distance from left or top. 1639Panel1.HeightInternal = Height; 1645Panel2.Location = new Point(Panel1.WidthInternal + SplitterWidthInternal, 0); 1649Panel1.Location = new Point(Width - Panel1.WidthInternal, 0); 1664Panel1.Size = Size; 1665Panel1.Location = new Point(0, 0); 1677Panel1.Size = new Size(Width, _panelSize); 1687Panel1.HeightInternal = _splitterDistance; 1688Panel1.WidthInternal = Width; 1701Panel1.HeightInternal = _splitterDistance; // Default splitter distance from left or top. 1702Panel1.WidthInternal = Width; 1720Panel1.Size = Size; 1721Panel1.Location = new Point(0, 0); 1737Panel1.ResumeLayout(); 1794if ((Panel1.Controls.Count > 0 || Panel2.Controls.Count > 0) || TabStop) 2167Panel1.SuspendLayout(); 2176Panel1.HeightInternal = Height; 2177Panel1.WidthInternal = _splitterDistance; // Default splitter distance from left or top. 2182Panel1.Location = new Point(0, 0); 2187Panel1.Location = new Point(Width - _splitterDistance, 0); 2195_ratioWidth = (Width / (double)(Panel1.Width) > 0) ? Width / (double)(Panel1.Width) : _ratioWidth; 2207Panel1.Size = Size; 2208Panel1.Location = new Point(0, 0); 2223Panel1.Location = new Point(0, 0); 2224Panel1.WidthInternal = Width; 2226Panel1.HeightInternal = SplitterDistanceInternal; // Default splitter distance from left or top. 2236_ratioHeight = (Height / (double)(Panel1.Height) > 0) ? Height / (double)(Panel1.Height) : _ratioHeight; 2248Panel1.Size = Size; 2249Panel1.Location = new Point(0, 0); 2260Panel1.ResumeLayout();
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
233_splitterPanel1 = _splitContainer.Panel1; 236EnableDesignMode(_splitContainer.Panel1, Panel1Name);
System.Windows.Forms.Design.Tests (1)
SplitContainerDesignerTests.cs (1)
44control.Parent = splitContainer.Panel1;
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlTests.Methods.cs (2)
2188Parent = grandparent.Panel1 2191Assert.Same(grandparent, grandparent.Panel1.GetContainerControl());
System.Windows.Forms.UI.IntegrationTests (3)
Dpi\SplitContainerTests.cs (3)
23Assert.NotNull(sc.Panel1); 24Assert.Equal(sc, sc.Panel1.Owner); 67Assert.Equal(splitContainer.SplitterDistance, splitContainer.Panel1.Height);
TrimTest (4)
Form1.Designer.cs (4)
39splitContainer1.Panel1.SuspendLayout(); 52splitContainer1.Panel1.Controls.Add(textBox1); 104splitContainer1.Panel1.ResumeLayout(false); 105splitContainer1.Panel1.PerformLayout();
WinFormsControlsTest (7)
ScrollableControls.Designer.cs (6)
81splitContainer1.Panel1.SuspendLayout(); 222splitContainer1.Panel1.AutoScroll = true; 223splitContainer1.Panel1.Controls.Add(button16); 224splitContainer1.Panel1.Controls.Add(button15); 225splitContainer1.Panel1.Controls.Add(button10); 457splitContainer1.Panel1.ResumeLayout(false);
Splitter.Designer.cs (1)
48this.splitContainer1.Panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));