7 references to MdiChildren
System.Windows.Forms (4)
System\Windows\Forms\Form.cs (1)
1414
public Form[] MdiChildren => _ctlClient is not null ? _ctlClient.
MdiChildren
: ([]);
System\Windows\Forms\MDI\MDIClient.cs (3)
348
if (childForm is null &&
MdiChildren
.Length > 0 &&
MdiChildren
[0].IsMdiChildFocusable)
350
childForm =
MdiChildren
[0];
System.Windows.Forms.Tests (3)
System\Windows\Forms\MdiClientTests.cs (3)
63
Assert.Empty(control.
MdiChildren
);
64
Assert.Same(control.
MdiChildren
, control.
MdiChildren
);