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