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); 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);