21 instantiations of SplitContainer
Accessibility_Core_App (2)
ContainerControls2.Designer.cs (2)
34this.splitContainer1 = new System.Windows.Forms.SplitContainer(); 56this.splitContainer2 = new System.Windows.Forms.SplitContainer();
DesignSurface (1)
MainForm.Designer.cs (1)
34this.splitContainer = new System.Windows.Forms.SplitContainer();
System.Windows.Forms.Design.Tests (3)
SplitContainerDesignerTests.cs (2)
33using SplitContainer splitContainer = new(); 53using SplitContainer splitContainer = new();
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (1)
19using SplitContainer splitContainer = new();
System.Windows.Forms.Tests (10)
System\Windows\Forms\AccessibleObjects\SplitContainer.SplitContainerAccessibleObjectTests.cs (7)
13using SplitContainer splitContainer = new(); 23using SplitContainer splitContainer = new(); 36using SplitContainer splitContainer = new(); 65using SplitContainer splitContainer = new(); 80using SplitContainer control = new() 96using SplitContainer control = new(); 110using SplitContainer control = new();
System\Windows\Forms\ControlTests.Methods.cs (1)
2173using SplitContainer grandparent = new()
System\Windows\Forms\SplitContainer.SplitContainerTypedControlCollectionTests.cs (1)
11using SplitContainer owner = new ();
System\Windows\Forms\SplitterPanelTests.cs (1)
16yield return new object[] { new SplitContainer() };
System.Windows.Forms.UI.IntegrationTests (2)
Dpi\SplitContainerTests.cs (2)
20using SplitContainer sc = new(); 46using SplitContainer splitContainer = new()
TrimTest (1)
Form1.Designer.cs (1)
34splitContainer1 = new SplitContainer();
WinFormsControlsTest (2)
ScrollableControls.Designer.cs (1)
58splitContainer1 = new SplitContainer();
Splitter.Designer.cs (1)
34this.splitContainer1 = new System.Windows.Forms.SplitContainer();
59 references to SplitContainer
Accessibility_Core_App (2)
ContainerControls2.Designer.cs (2)
456private System.Windows.Forms.SplitContainer splitContainer1; 478private System.Windows.Forms.SplitContainer splitContainer2;
DesignSurface (5)
MainForm.cs (4)
164SplitContainer sct = surface.CreateControl<SplitContainer>(new Size(400, 100), new Point(0, 0)); 319SplitContainer splitContainer = surface.CreateControl<SplitContainer>(new(0, 0), new(0, 0));
MainForm.Designer.cs (1)
318private System.Windows.Forms.SplitContainer splitContainer;
System.Windows.Forms (23)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (7)
251SplitContainer sc = splitterPanel.Owner; 312SplitContainer sc = splitterPanel.Owner; 1865if (ctl is SplitContainer splitContainer) 1948if (ctl is SplitContainer splitContainer) 2024private void SetInnerMostBorder(SplitContainer sc) 2033if (child is SplitContainer splitContainer && splitContainer.Dock == DockStyle.Fill) 2291if (control is SplitContainer && control.Dock == DockStyle.Fill)
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerAccessibleObject.cs (3)
13public SplitContainerAccessibleObject(SplitContainer owner) : base(owner) 20UIA_PROPERTY_ID.UIA_AutomationIdPropertyId when this.TryGetOwnerAs(out SplitContainer? owner) => (VARIANT)owner.Name, 21UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out SplitContainer? owner) && owner.Focused),
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerMessageFilter.cs (2)
10private readonly SplitContainer _owner; 12public SplitContainerMessageFilter(SplitContainer splitContainer)
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerTypedControlCollection.cs (2)
14private readonly SplitContainer _owner; 16public SplitContainerTypedControlCollection(SplitContainer splitContainer, Type type, bool isReadOnly)
System\Windows\Forms\Layout\Containers\SplitterCancelEventArgs.cs (3)
15/// of the mouse pointer and the upper-left corner of the <see cref="SplitContainer"/>. 36/// Gets the x-coordinate of the upper-left corner of the <see cref="SplitContainer"/> (in client coordinates). 41/// Gets the y-coordinate of the upper-left corner of the <see cref="SplitContainer"/> (in client coordinates).
System\Windows\Forms\Panels\SplitterPanel.cs (6)
14public SplitterPanel(SplitContainer owner) : base() 87/// Gets or sets which edge of the <see cref="SplitContainer" /> that the 92/// One of the enumeration values that specifies which edge of the <see cref="SplitContainer" /> 197internal SplitContainer Owner { get; } 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" />.
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
23private SplitContainer? _splitContainer; 231_splitContainer = component as SplitContainer;
System\Windows\Forms\Design\SplitterPanelDesigner.cs (2)
119if (lockedProp is not null && _splitterPanel.Parent is SplitContainer) 261public override SelectionRules SelectionRules => Control.Parent is SplitContainer ? SelectionRules.Locked : SelectionRules.None;
System.Windows.Forms.Design.Tests (4)
SplitContainerDesignerTests.cs (3)
13private Mock<ISite> GetMockSize(SplitContainer splitContainer, SplitContainerDesigner splitContainerDesigner) 33using SplitContainer splitContainer = new(); 53using SplitContainer splitContainer = new();
System\Windows\Forms\Design\SplitterPanelDesignerTests.cs (1)
19using SplitContainer splitContainer = new();
System.Windows.Forms.Tests (16)
System\Windows\Forms\AccessibleObjects\SplitContainer.SplitContainerAccessibleObjectTests.cs (11)
13using SplitContainer splitContainer = new(); 14SplitContainer.SplitContainerAccessibleObject accessibleObject = new(splitContainer); 23using SplitContainer splitContainer = new(); 36using SplitContainer splitContainer = new(); 65using SplitContainer splitContainer = new(); 80using SplitContainer control = new() 86var accessibleObject = new SplitContainer.SplitContainerAccessibleObject(control); 96using SplitContainer control = new(); 98var accessibleObject = new SplitContainer.SplitContainerAccessibleObject(control); 110using SplitContainer control = new(); 112var accessibleObject = new SplitContainer.SplitContainerAccessibleObject(control);
System\Windows\Forms\ControlTests.Methods.cs (1)
2173using SplitContainer grandparent = new()
System\Windows\Forms\SplitContainer.SplitContainerTypedControlCollectionTests.cs (3)
11using SplitContainer owner = new (); 12SplitContainer.SplitContainerTypedControlCollection collection = new(owner, typeof(SplitterPanel), false); 22Assert.Throws<ArgumentNullException>("owner", () => new SplitContainer.SplitContainerTypedControlCollection(null, typeof(SplitterPanel), false));
System\Windows\Forms\SplitterPanelTests.cs (1)
21public void SplitterPanel_Ctor_SplitContainer(SplitContainer owner)
System.Windows.Forms.UI.IntegrationTests (2)
Dpi\SplitContainerTests.cs (2)
20using SplitContainer sc = new(); 46using SplitContainer splitContainer = new()
TrimTest (1)
Form1.Designer.cs (1)
114private SplitContainer splitContainer1;
WinFormsControlsTest (2)
ScrollableControls.Designer.cs (1)
482private SplitContainer splitContainer1;
Splitter.Designer.cs (1)
75private System.Windows.Forms.SplitContainer splitContainer1;