7 writes to ActiveMdiChildInternal
System.Windows.Forms (3)
System\Windows\Forms\Form.cs (3)
1112ActiveMdiChildInternal = null; 2872ActiveMdiChildInternal = form; 3488ActiveMdiChildInternal = null;
System.Windows.Forms.Tests (4)
System\Windows\Forms\FormTests.cs (4)
257form.ActiveMdiChildInternal = child; 273form.ActiveMdiChildInternal = child; 289form.ActiveMdiChildInternal = child; 304form.ActiveMdiChildInternal = child;
18 references to ActiveMdiChildInternal
System.Windows.Forms (16)
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (1)
844rootWindowsMatch = toolStripForm == mainForm.ActiveMdiChildInternal;
System\Windows\Forms\Form.cs (14)
301Form? mdiChild = ActiveMdiChildInternal; 802Form? form = formMdiParent?.ActiveMdiChildInternal; 2861Form? activeMdiChild = ActiveMdiChildInternal; 3453Form? activeMdiChild = ActiveMdiChildInternal; 3866|| this != MdiParentInternal.ActiveMdiChildInternal 6209Form? activeMdiChild = ActiveMdiChildInternal; 6262List<ToolStrip> childrenToolStrips = ToolStripManager.FindMergeableToolStrips(ActiveMdiChildInternal); 6274if (ActiveMdiChildInternal is not null) 6295Form? activeMdiForm = ActiveMdiChildInternal; 6341if (ActiveMdiChildInternal is not null && maximized && ActiveMdiChildInternal.ControlBox) 6351MdiControlStrip = new MdiControlStrip(ActiveMdiChildInternal); 6946if (MdiParentInternal.ActiveMdiChildInternal == this) 7096if (MdiControlStrip is null && MdiParentInternal is not null && MdiParentInternal.ActiveMdiChildInternal == this)
System\Windows\Forms\MDI\MDIClient.cs (1)
343childForm = parentInternalAsForm.ActiveMdiChildInternal;
System.Windows.Forms.Tests (2)
System\Windows\Forms\FormTests.cs (2)
259Assert.NotNull(form.ActiveMdiChildInternal); 260Assert.Equal(child, form.ActiveMdiChildInternal);