3 writes to _parent
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
4163
_parent
= value;
4218
_parent
= value;
4743
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)
1331
cp.Parent =
_parent
is null ? IntPtr.Zero :
_parent
.InternalHandle;
2621
get =>
_parent
;
2624
if (
_parent
== value)
2635
_parent
?.Controls.Remove(this);
4181
if (oldVisible != newVisible && !(!oldVisible && newVisible &&
_parent
is null && !GetTopLevel()))
4307
if (
_parent
is not null)
4309
_parent
.Controls.SetChildIndex(this, 0);
4327
Enabled && Visible && (
_parent
is null ||
_parent
.CanProcessMnemonic());
4337
for (Control? ctl = this; ctl is not null; ctl = ctl.
_parent
)
4397
_parent
?.ChildGotFocus(child);
4491
if (
_parent
is not null)
4493
Rectangle parentClient =
_parent
.ClientRectangle;
4736
_parent
?.Controls.Remove(this);
5494
Control? p = ctl.
_parent
;
5547
ctl = ctl.
_parent
;
5557
Control? parent = ctl.
_parent
?? throw new InvalidOperationException(
5627
return ctl.ToolStripControlHost is not null ? GetNextControl(ctl.
_parent
, forward: false) : parent;
7110
if (
_parent
is not null && visible && !Created)
7535
_parent
?.ChildGotFocus(this);
8667
_parent
?.ProcessCmdKey(ref msg, keyData) ?? false;
8773
protected virtual bool ProcessDialogChar(char charCode) =>
_parent
?.ProcessDialogChar(charCode) ?? false;
8787
protected virtual bool ProcessDialogKey(Keys keyData) =>
_parent
?.ProcessDialogKey(keyData) ?? false;
8884
(
_parent
is not null &&
_parent
.ProcessKeyPreview(ref m)) || ProcessKeyEventArgs(ref m);
8901
protected virtual bool ProcessKeyPreview(ref Message m) =>
_parent
?.ProcessKeyPreview(ref m) ?? false;
9224
&& (FromHandle(parentHandle) is null ||
_parent
is null)
9852
if (!Contains(ctl) || (!nested && ctl.
_parent
!= this))
9880
&& (nested || ctl.
_parent
== this))
9882
if (ctl.
_parent
is ToolStrip)
9919
if (
_parent
is not null)
9921
_parent
.Controls.SetChildIndex(this, -1);
10185
_parent
?.UpdateChildZOrder(this);
10249
if (
_parent
is not null)
10296
else if (IsHandleCreated || (value &&
_parent
?.Created == true))
10341
using (new LayoutTransaction(
_parent
, this, PropertyNames.Visible))
10872
_parent
?.UpdateChildZOrder(this);
10880
if (!IsHandleCreated || !control.IsHandleCreated || control.
_parent
!= this)
10889
if (child.IsHandleCreated && child.
_parent
== this)
11262
_parent
?.UpdateChildZOrder(this);
12111
&&
_parent
is not null
12112
&& PInvoke.GetParent(this) ==
_parent
.InternalHandle
12118
_parent
.UpdateChildControlIndex(this);