27 references to SplitContainer
System.Windows.Forms (23)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (7)
251
SplitContainer
sc = splitterPanel.Owner;
312
SplitContainer
sc = splitterPanel.Owner;
1865
if (ctl is
SplitContainer
splitContainer)
1948
if (ctl is
SplitContainer
splitContainer)
2024
private void SetInnerMostBorder(
SplitContainer
sc)
2033
if (child is
SplitContainer
splitContainer && splitContainer.Dock == DockStyle.Fill)
2291
if (control is
SplitContainer
&& control.Dock == DockStyle.Fill)
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerAccessibleObject.cs (3)
13
public SplitContainerAccessibleObject(
SplitContainer
owner) : base(owner)
20
UIA_PROPERTY_ID.UIA_AutomationIdPropertyId when this.TryGetOwnerAs(out
SplitContainer
? owner) => (VARIANT)owner.Name,
21
UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out
SplitContainer
? owner) && owner.Focused),
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerMessageFilter.cs (2)
10
private readonly
SplitContainer
_owner;
12
public SplitContainerMessageFilter(
SplitContainer
splitContainer)
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerTypedControlCollection.cs (2)
14
private readonly
SplitContainer
_owner;
16
public 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)
14
public 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
" />
197
internal
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)
23
private
SplitContainer
? _splitContainer;
231
_splitContainer = component as
SplitContainer
;
System\Windows\Forms\Design\SplitterPanelDesigner.cs (2)
119
if (lockedProp is not null && _splitterPanel.Parent is
SplitContainer
)
261
public override SelectionRules SelectionRules => Control.Parent is
SplitContainer
? SelectionRules.Locked : SelectionRules.None;