1 implementation of ActiveControl
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ContainerControl.cs (1)
284public Control ActiveControl {
10 writes to ActiveControl
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ContainerControl.cs (1)
1361c.ActiveControl = this;
winforms\Managed\System\WinForms\Control.cs (2)
6380c.ActiveControl = this; 11649c.ActiveControl = this;
winforms\Managed\System\WinForms\SplitContainer.cs (4)
1326c.ActiveControl = this; 1985c.ActiveControl = this; 2086c.ActiveControl = container; 2468c.ActiveControl = this;
winforms\Managed\System\WinForms\TabControl.cs (2)
1974c.ActiveControl = this; 2101c.ActiveControl = this;
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4246c.ActiveControl = this;
7 references to ActiveControl
System.Windows.Forms (7)
winforms\Managed\System\WinForms\ContainerControl.cs (1)
1362correctParentActiveControl = (c.ActiveControl == this);
winforms\Managed\System\WinForms\SplitContainer.cs (1)
2087correctParentActiveControl = (c.ActiveControl == container);
winforms\Managed\System\WinForms\TabControl.cs (4)
1952while (c.ActiveControl is ContainerControl) { 1953c = (IContainerControl) c.ActiveControl; 1955if (c.ActiveControl != null) 1957c.ActiveControl.FocusInternal();
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4247correctParentActiveControl = (c.ActiveControl == this);