3 writes to _parent
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (3)
4162
_parent
= value;
4217
_parent
= value;
4742
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)
1330
cp.Parent =
_parent
is null ? IntPtr.Zero :
_parent
.InternalHandle;
2620
get =>
_parent
;
2623
if (
_parent
== value)
2634
_parent
?.Controls.Remove(this);
4180
if (oldVisible != newVisible && !(!oldVisible && newVisible &&
_parent
is null && !GetTopLevel()))
4306
if (
_parent
is not null)
4308
_parent
.Controls.SetChildIndex(this, 0);
4326
Enabled && Visible && (
_parent
is null ||
_parent
.CanProcessMnemonic());
4336
for (Control? ctl = this; ctl is not null; ctl = ctl.
_parent
)
4396
_parent
?.ChildGotFocus(child);
4490
if (
_parent
is not null)
4492
Rectangle parentClient =
_parent
.ClientRectangle;
4735
_parent
?.Controls.Remove(this);
5533
Control? p = ctl.
_parent
;
5586
ctl = ctl.
_parent
;
5596
Control? parent = ctl.
_parent
?? throw new InvalidOperationException(
5666
return ctl.ToolStripControlHost is not null ? GetNextControl(ctl.
_parent
, forward: false) : parent;
7146
if (
_parent
is not null && visible && !Created)
7571
_parent
?.ChildGotFocus(this);
8700
_parent
?.ProcessCmdKey(ref msg, keyData) ?? false;
8806
protected virtual bool ProcessDialogChar(char charCode) =>
_parent
?.ProcessDialogChar(charCode) ?? false;
8820
protected virtual bool ProcessDialogKey(Keys keyData) =>
_parent
?.ProcessDialogKey(keyData) ?? false;
8917
(
_parent
is not null &&
_parent
.ProcessKeyPreview(ref m)) || ProcessKeyEventArgs(ref m);
8934
protected virtual bool ProcessKeyPreview(ref Message m) =>
_parent
?.ProcessKeyPreview(ref m) ?? false;
9257
&& (FromHandle(parentHandle) is null ||
_parent
is null)
9874
if (!Contains(ctl) || (!nested && ctl.
_parent
!= this))
9902
&& (nested || ctl.
_parent
== this))
9904
if (ctl.
_parent
is ToolStrip)
9941
if (
_parent
is not null)
9943
_parent
.Controls.SetChildIndex(this, -1);
10207
_parent
?.UpdateChildZOrder(this);
10271
if (
_parent
is not null)
10318
else if (IsHandleCreated || (value &&
_parent
?.Created == true))
10363
using (new LayoutTransaction(
_parent
, this, PropertyNames.Visible))
10894
_parent
?.UpdateChildZOrder(this);
10902
if (!IsHandleCreated || !control.IsHandleCreated || control.
_parent
!= this)
10911
if (child.IsHandleCreated && child.
_parent
== this)
11284
_parent
?.UpdateChildZOrder(this);
12129
&&
_parent
is not null
12130
&& PInvoke.GetParent(this) ==
_parent
.InternalHandle
12136
_parent
.UpdateChildControlIndex(this);