3 writes to _parent
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
4462
_parent
= value;
4522
_parent
= value;
5046
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)
1598
cp.Parent =
_parent
is null ? IntPtr.Zero :
_parent
.InternalHandle;
2888
get =>
_parent
;
2891
if (
_parent
== value)
2902
_parent
?.Controls.Remove(this);
4480
if (oldVisible != newVisible && !(!oldVisible && newVisible &&
_parent
is null && !GetTopLevel()))
4610
if (
_parent
is not null)
4612
_parent
.Controls.SetChildIndex(this, 0);
4630
Enabled && Visible && (
_parent
is null ||
_parent
.CanProcessMnemonic());
4640
for (Control? ctl = this; ctl is not null; ctl = ctl.
_parent
)
4700
_parent
?.ChildGotFocus(child);
4794
if (
_parent
is not null)
4796
Rectangle parentClient =
_parent
.ClientRectangle;
5039
_parent
?.Controls.Remove(this);
5846
Control? p = ctl.
_parent
;
5899
ctl = ctl.
_parent
;
5909
Control? parent = ctl.
_parent
?? throw new InvalidOperationException(
5979
return ctl.ToolStripControlHost is not null ? GetNextControl(ctl.
_parent
, forward: false) : parent;
7836
if (
_parent
is not null && visible && !Created)
8273
_parent
?.ChildGotFocus(this);
9514
_parent
?.ProcessCmdKey(ref msg, keyData) ?? false;
9620
protected virtual bool ProcessDialogChar(char charCode) =>
_parent
?.ProcessDialogChar(charCode) ?? false;
9634
protected virtual bool ProcessDialogKey(Keys keyData) =>
_parent
?.ProcessDialogKey(keyData) ?? false;
9731
(
_parent
is not null &&
_parent
.ProcessKeyPreview(ref m)) || ProcessKeyEventArgs(ref m);
9748
protected virtual bool ProcessKeyPreview(ref Message m) =>
_parent
?.ProcessKeyPreview(ref m) ?? false;
10077
&& (FromHandle(parentHandle) is null ||
_parent
is null)
10708
if (!Contains(ctl) || (!nested && ctl.
_parent
!= this))
10736
&& (nested || ctl.
_parent
== this))
10738
if (ctl.
_parent
is ToolStrip)
10775
if (
_parent
is not null)
10777
_parent
.Controls.SetChildIndex(this, -1);
11041
_parent
?.UpdateChildZOrder(this);
11119
if (
_parent
is not null)
11166
else if (IsHandleCreated || (value &&
_parent
?.Created == true))
11211
using (new LayoutTransaction(
_parent
, this, PropertyNames.Visible))
11742
_parent
?.UpdateChildZOrder(this);
11750
if (!IsHandleCreated || !control.IsHandleCreated || control.
_parent
!= this)
11759
if (child.IsHandleCreated && child.
_parent
== this)
12132
_parent
?.UpdateChildZOrder(this);
12981
&&
_parent
is not null
12982
&& PInvoke.GetParent(this) ==
_parent
.InternalHandle
12988
_parent
.UpdateChildControlIndex(this);