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