3 writes to _parent
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
4251
_parent
= value;
4306
_parent
= value;
4831
child.
_parent
= null;
48 references to _parent
System.Windows.Forms (48)
System\Windows\Forms\Control.ControlCollection.cs (4)
63
if (value.
_parent
== Owner)
70
value.
_parent
?.Controls.Remove(value);
96
Control? oldParent = value.
_parent
;
106
if (oldParent != value.
_parent
&& (Owner._state & States.Created) != 0)
System\Windows\Forms\Control.cs (44)
1419
cp.Parent =
_parent
is null ? IntPtr.Zero :
_parent
.InternalHandle;
2709
get =>
_parent
;
2712
if (
_parent
== value)
2723
_parent
?.Controls.Remove(this);
4269
if (oldVisible != newVisible && !(!oldVisible && newVisible &&
_parent
is null && !GetTopLevel()))
4395
if (
_parent
is not null)
4397
_parent
.Controls.SetChildIndex(this, 0);
4415
Enabled && Visible && (
_parent
is null ||
_parent
.CanProcessMnemonic());
4425
for (Control? ctl = this; ctl is not null; ctl = ctl.
_parent
)
4485
_parent
?.ChildGotFocus(child);
4579
if (
_parent
is not null)
4581
Rectangle parentClient =
_parent
.ClientRectangle;
4824
_parent
?.Controls.Remove(this);
5622
Control? p = ctl.
_parent
;
5675
ctl = ctl.
_parent
;
5685
Control? parent = ctl.
_parent
?? throw new InvalidOperationException(
5755
return ctl.ToolStripControlHost is not null ? GetNextControl(ctl.
_parent
, forward: false) : parent;
7237
if (
_parent
is not null && visible && !Created)
7663
_parent
?.ChildGotFocus(this);
8783
_parent
?.ProcessCmdKey(ref msg, keyData) ?? false;
8889
protected virtual bool ProcessDialogChar(char charCode) =>
_parent
?.ProcessDialogChar(charCode) ?? false;
8903
protected virtual bool ProcessDialogKey(Keys keyData) =>
_parent
?.ProcessDialogKey(keyData) ?? false;
9000
(
_parent
is not null &&
_parent
.ProcessKeyPreview(ref m)) || ProcessKeyEventArgs(ref m);
9017
protected virtual bool ProcessKeyPreview(ref Message m) =>
_parent
?.ProcessKeyPreview(ref m) ?? false;
9346
&& (FromHandle(parentHandle) is null ||
_parent
is null)
9977
if (!Contains(ctl) || (!nested && ctl.
_parent
!= this))
10005
&& (nested || ctl.
_parent
== this))
10007
if (ctl.
_parent
is ToolStrip)
10044
if (
_parent
is not null)
10046
_parent
.Controls.SetChildIndex(this, -1);
10310
_parent
?.UpdateChildZOrder(this);
10388
if (
_parent
is not null)
10435
else if (IsHandleCreated || (value &&
_parent
?.Created == true))
10480
using (new LayoutTransaction(
_parent
, this, PropertyNames.Visible))
11011
_parent
?.UpdateChildZOrder(this);
11019
if (!IsHandleCreated || !control.IsHandleCreated || control.
_parent
!= this)
11028
if (child.IsHandleCreated && child.
_parent
== this)
11401
_parent
?.UpdateChildZOrder(this);
12246
&&
_parent
is not null
12247
&& PInvoke.GetParent(this) ==
_parent
.InternalHandle
12253
_parent
.UpdateChildControlIndex(this);