4 writes to _ctlClient
System.Windows.Forms (4)
System\Windows\Forms\Form.ControlCollection.cs (2)
44
_owner.
_ctlClient
= client;
65
_owner.
_ctlClient
= null;
System\Windows\Forms\Form.cs (2)
3344
_ctlClient
= null;
3582
_ctlClient
= null;
27 references to _ctlClient
System.Windows.Forms (27)
System\Windows\Forms\Form.ControlCollection.cs (3)
31
if (value is MdiClient client && _owner.
_ctlClient
is null)
55
_owner.
_ctlClient
?.SendToBack();
63
if (value == _owner.
_ctlClient
)
System\Windows\Forms\Form.cs (24)
313
if (
_ctlClient
is not null &&
_ctlClient
.IsHandleCreated)
315
IntPtr hwnd = PInvokeCore.SendMessage(
_ctlClient
, PInvokeCore.WM_MDIGETACTIVE);
1093
return
_ctlClient
is not null;
1105
Debug.Assert(
_ctlClient
is null, "why isn't ctlClient null");
1111
Debug.Assert(
_ctlClient
is not null, "why is ctlClient null");
1113
_ctlClient
.Dispose();
1411
public Form[] MdiChildren =>
_ctlClient
is not null ?
_ctlClient
.MdiChildren : ([]);
1435
internal MdiClient? MdiClient =>
_ctlClient
;
3342
if (control ==
_ctlClient
)
3502
if (
_ctlClient
is not null &&
_ctlClient
.IsHandleCreated &&
_ctlClient
.ParentInternal == this)
3506
_ctlClient
.HWND,
3511
GC.KeepAlive(
_ctlClient
);
4006
_ctlClient
?.LayoutMdi(value);
4730
if (
_ctlClient
is not null &&
_ctlClient
.Handle != IntPtr.Zero &&
4731
PInvoke.TranslateMDISysAccel(
_ctlClient
.HWND, win32Message))
6165
if (
_ctlClient
is null || !
_ctlClient
.IsHandleCreated)
6193
PInvokeCore.SendMessage(
_ctlClient
, PInvokeCore.WM_MDISETMENU, (WPARAM)dummyMenu.Value);
7093
if (
_ctlClient
is null)