2 instantiations of SplitterPanel
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
96Panel1 = new SplitterPanel(this); 99Panel2 = new SplitterPanel(this);
33 references to SplitterPanel
System.Windows.Forms (22)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (11)
249if (ParentInternal is SplitterPanel splitterPanel) 310if (ParentInternal is SplitterPanel splitterPanel) 479public SplitterPanel Panel1 { get; } 484private void CollapsePanel(SplitterPanel p, bool collapsing) 600public SplitterPanel Panel2 { get; } 1834SplitterPanel? firstPanel = null; 1839if (ctl is SplitterPanel panel && panel.Visible) 1940if (ctl is null || (ctl is SplitterPanel && ctl.Visible)) 1964if (ctl is null || (ctl is SplitterPanel && !ctl.Visible)) 2029if (control is SplitterPanel panel) 2424return new SplitContainerTypedControlCollection(this, typeof(SplitterPanel), /*isReadOnly*/true);
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerTypedControlCollection.cs (2)
24if (value is SplitterPanel && !_owner.DesignMode && IsReadOnly) 34if (child is not SplitterPanel)
System\Windows\Forms\Panels\SplitterPanel.cs (9)
23/// Gets or sets a value that indicates whether the <see cref="SplitterPanel" /> is automatically 88/// <see cref="SplitterPanel" /> is docked to. 93/// that the <see cref="SplitterPanel" /> is docked to. 180/// The name of this <see cref="SplitterPanel" />. 183/// <value>The name of this <see cref="SplitterPanel" />.</value> 200/// Gets or sets the <see cref="SplitContainer" /> that contains this <see cref="SplitterPanel" />. 204/// A control representing the <see cref="SplitContainer" /> that contains this <see cref="SplitterPanel" />. 241/// <see cref="SplitterPanel" /> using the TAB key. 254/// Gets or sets a value that indicates whether the <see cref="SplitterPanel" /> is displayed.
System.Windows.Forms.Design (11)
System\Windows\Forms\Design\SplitContainerDesigner.cs (9)
24private SplitterPanel? _selectedPanel; 26private SplitterPanel? _splitterPanel1, _splitterPanel2; 91SplitterPanel panel; 112internal SplitterPanel? Selected 146foreach (SplitterPanel panel in _splitContainer!.Controls) 381if (g.RelatedComponent is not SplitterPanel) 409SplitterPanel? panel = CheckIfPanelSelected(comp); 431private static SplitterPanel? CheckIfPanelSelected(object comp) => comp as SplitterPanel;
System\Windows\Forms\Design\SplitterPanelDesigner.cs (2)
21private SplitterPanel? _splitterPanel; 108_splitterPanel = (SplitterPanel)component;