38 instantiations of SplitterPanel
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
96
Panel1 = new
SplitterPanel
(this);
99
Panel2 = new
SplitterPanel
(this);
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (1)
20
using SplitterPanel splitterPanel =
new
(splitContainer);
System.Windows.Forms.Tests (35)
System\Windows\Forms\SplitterPanelTests.cs (35)
23
using SplitterPanel control =
new
(owner);
109
using SplitterPanel control =
new
(null)
128
using SplitterPanel control =
new
(null);
153
using SplitterPanel control =
new
(null)
193
using SplitterPanel control =
new
(null);
215
using SplitterPanel control =
new
(null)
245
using SplitterPanel control =
new
(null);
276
using SplitterPanel control =
new
(null)
330
using SplitterPanel control =
new
(null)
349
using SplitterPanel control =
new
(null);
378
using SplitterPanel control =
new
(null);
386
using SplitterPanel control =
new
(null)
402
using SplitterPanel control =
new
(null)
441
using SplitterPanel control =
new
(null);
452
using SplitterPanel control =
new
(null);
513
using SplitterPanel control =
new
(null);
586
using SplitterPanel control =
new
(null);
641
using SplitterPanel control =
new
(null)
666
using SplitterPanel control =
new
(null)
697
using SplitterPanel control =
new
(null)
721
using SplitterPanel control =
new
(null)
738
using SplitterPanel control =
new
(null);
784
using SplitterPanel control =
new
(null);
871
using SplitterPanel control =
new
(null)
887
using SplitterPanel control =
new
(null)
925
using SplitterPanel control =
new
(null);
933
using SplitterPanel control =
new
(null)
955
using SplitterPanel control =
new
(null);
991
using SplitterPanel control =
new
(null)
1030
using SplitterPanel control =
new
(null)
1047
using SplitterPanel control =
new
(null);
1075
using SplitterPanel control =
new
(null);
1111
using SplitterPanel control =
new
(null)
1132
using SplitterPanel control =
new
(null)
1174
using SplitterPanel control =
new
(null);
74 references to SplitterPanel
DesignSurface (2)
MainForm.cs (2)
336
SplitterPanel
splitterPanel1 = splitContainer.Panel1;
337
SplitterPanel
splitterPanel2 = splitContainer.Panel2;
System.Windows.Forms (22)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (11)
249
if (ParentInternal is
SplitterPanel
splitterPanel)
310
if (ParentInternal is
SplitterPanel
splitterPanel)
479
public
SplitterPanel
Panel1 { get; }
484
private void CollapsePanel(
SplitterPanel
p, bool collapsing)
600
public
SplitterPanel
Panel2 { get; }
1834
SplitterPanel
? firstPanel = null;
1839
if (ctl is
SplitterPanel
panel && panel.Visible)
1940
if (ctl is null || (ctl is
SplitterPanel
&& ctl.Visible))
1964
if (ctl is null || (ctl is
SplitterPanel
&& !ctl.Visible))
2029
if (control is
SplitterPanel
panel)
2424
return new SplitContainerTypedControlCollection(this, typeof(
SplitterPanel
), /*isReadOnly*/true);
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerTypedControlCollection.cs (2)
24
if (value is
SplitterPanel
&& !_owner.DesignMode && IsReadOnly)
34
if (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)
24
private
SplitterPanel
? _selectedPanel;
26
private
SplitterPanel
? _splitterPanel1, _splitterPanel2;
91
SplitterPanel
panel;
112
internal
SplitterPanel
? Selected
146
foreach (
SplitterPanel
panel in _splitContainer!.Controls)
381
if (g.RelatedComponent is not
SplitterPanel
)
409
SplitterPanel
? panel = CheckIfPanelSelected(comp);
431
private static
SplitterPanel
? CheckIfPanelSelected(object comp) => comp as
SplitterPanel
;
System\Windows\Forms\Design\SplitterPanelDesigner.cs (2)
21
private
SplitterPanel
? _splitterPanel;
108
_splitterPanel = (
SplitterPanel
)component;
System.Windows.Forms.Design.Tests (2)
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (2)
20
using
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)
12
SplitContainer.SplitContainerTypedControlCollection collection = new(owner, typeof(
SplitterPanel
), false);
22
Assert.Throws<ArgumentNullException>("owner", () => new SplitContainer.SplitContainerTypedControlCollection(null, typeof(
SplitterPanel
), false));
System\Windows\Forms\SplitterPanelTests.cs (35)
23
using
SplitterPanel
control = new(owner);
109
using
SplitterPanel
control = new(null)
128
using
SplitterPanel
control = new(null);
153
using
SplitterPanel
control = new(null)
193
using
SplitterPanel
control = new(null);
215
using
SplitterPanel
control = new(null)
245
using
SplitterPanel
control = new(null);
276
using
SplitterPanel
control = new(null)
330
using
SplitterPanel
control = new(null)
349
using
SplitterPanel
control = new(null);
378
using
SplitterPanel
control = new(null);
386
using
SplitterPanel
control = new(null)
402
using
SplitterPanel
control = new(null)
441
using
SplitterPanel
control = new(null);
452
using
SplitterPanel
control = new(null);
513
using
SplitterPanel
control = new(null);
586
using
SplitterPanel
control = new(null);
641
using
SplitterPanel
control = new(null)
666
using
SplitterPanel
control = new(null)
697
using
SplitterPanel
control = new(null)
721
using
SplitterPanel
control = new(null)
738
using
SplitterPanel
control = new(null);
784
using
SplitterPanel
control = new(null);
871
using
SplitterPanel
control = new(null)
887
using
SplitterPanel
control = new(null)
925
using
SplitterPanel
control = new(null);
933
using
SplitterPanel
control = new(null)
955
using
SplitterPanel
control = new(null);
991
using
SplitterPanel
control = new(null)
1030
using
SplitterPanel
control = new(null)
1047
using
SplitterPanel
control = new(null);
1075
using
SplitterPanel
control = new(null);
1111
using
SplitterPanel
control = new(null)
1132
using
SplitterPanel
control = new(null)
1174
using
SplitterPanel
control = new(null);