38 instantiations of SplitterPanel
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
96Panel1 = new SplitterPanel(this); 99Panel2 = new SplitterPanel(this);
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (1)
20using SplitterPanel splitterPanel = new(splitContainer);
System.Windows.Forms.Tests (35)
System\Windows\Forms\SplitterPanelTests.cs (35)
23using SplitterPanel control = new(owner); 109using SplitterPanel control = new(null) 128using SplitterPanel control = new(null); 153using SplitterPanel control = new(null) 193using SplitterPanel control = new(null); 215using SplitterPanel control = new(null) 245using SplitterPanel control = new(null); 276using SplitterPanel control = new(null) 330using SplitterPanel control = new(null) 349using SplitterPanel control = new(null); 378using SplitterPanel control = new(null); 386using SplitterPanel control = new(null) 402using SplitterPanel control = new(null) 441using SplitterPanel control = new(null); 452using SplitterPanel control = new(null); 513using SplitterPanel control = new(null); 586using SplitterPanel control = new(null); 641using SplitterPanel control = new(null) 666using SplitterPanel control = new(null) 697using SplitterPanel control = new(null) 721using SplitterPanel control = new(null) 738using SplitterPanel control = new(null); 784using SplitterPanel control = new(null); 871using SplitterPanel control = new(null) 887using SplitterPanel control = new(null) 925using SplitterPanel control = new(null); 933using SplitterPanel control = new(null) 955using SplitterPanel control = new(null); 991using SplitterPanel control = new(null) 1030using SplitterPanel control = new(null) 1047using SplitterPanel control = new(null); 1075using SplitterPanel control = new(null); 1111using SplitterPanel control = new(null) 1132using SplitterPanel control = new(null) 1174using SplitterPanel control = new(null);
74 references to SplitterPanel
DesignSurface (2)
MainForm.cs (2)
336SplitterPanel splitterPanel1 = splitContainer.Panel1; 337SplitterPanel splitterPanel2 = splitContainer.Panel2;
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;
System.Windows.Forms.Design.Tests (2)
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (2)
20using SplitterPanel splitterPanel = new(splitContainer); 51((SplitterPanel)splitterPanelDesigner.TestAccessor().Dynamic._splitterPanel).Should().Be(splitterPanel);
System.Windows.Forms.Tests (37)
System\Windows\Forms\SplitContainer.SplitContainerTypedControlCollectionTests.cs (2)
12SplitContainer.SplitContainerTypedControlCollection collection = new(owner, typeof(SplitterPanel), false); 22Assert.Throws<ArgumentNullException>("owner", () => new SplitContainer.SplitContainerTypedControlCollection(null, typeof(SplitterPanel), false));
System\Windows\Forms\SplitterPanelTests.cs (35)
23using SplitterPanel control = new(owner); 109using SplitterPanel control = new(null) 128using SplitterPanel control = new(null); 153using SplitterPanel control = new(null) 193using SplitterPanel control = new(null); 215using SplitterPanel control = new(null) 245using SplitterPanel control = new(null); 276using SplitterPanel control = new(null) 330using SplitterPanel control = new(null) 349using SplitterPanel control = new(null); 378using SplitterPanel control = new(null); 386using SplitterPanel control = new(null) 402using SplitterPanel control = new(null) 441using SplitterPanel control = new(null); 452using SplitterPanel control = new(null); 513using SplitterPanel control = new(null); 586using SplitterPanel control = new(null); 641using SplitterPanel control = new(null) 666using SplitterPanel control = new(null) 697using SplitterPanel control = new(null) 721using SplitterPanel control = new(null) 738using SplitterPanel control = new(null); 784using SplitterPanel control = new(null); 871using SplitterPanel control = new(null) 887using SplitterPanel control = new(null) 925using SplitterPanel control = new(null); 933using SplitterPanel control = new(null) 955using SplitterPanel control = new(null); 991using SplitterPanel control = new(null) 1030using SplitterPanel control = new(null) 1047using SplitterPanel control = new(null); 1075using SplitterPanel control = new(null); 1111using SplitterPanel control = new(null) 1132using SplitterPanel control = new(null) 1174using SplitterPanel control = new(null);