27 references to 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;