1 implementation of ActiveControl
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
283public Control? ActiveControl
10 writes to ActiveControl
System.Windows.Forms (10)
System\Windows\Forms\Control.cs (2)
5439control.ActiveControl = this; 10744c?.ActiveControl = this;
System\Windows\Forms\Controls\TabControl\TabControl.cs (2)
1908c.ActiveControl = this; 2030c.ActiveControl = this;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4143c.ActiveControl = this;
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1435c.ActiveControl = this;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (4)
1151c.ActiveControl = this; 1897c.ActiveControl = this; 2014c.ActiveControl = container; 2384c.ActiveControl = this;
6 references to ActiveControl
System.Windows.Forms (6)
System\Windows\Forms\Controls\TabControl\TabControl.cs (3)
1888while (c.ActiveControl is ContainerControl) 1890c = (IContainerControl)c.ActiveControl; 1893c.ActiveControl?.Focus();
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4144correctParentActiveControl = (c.ActiveControl == this);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1436correctParentActiveControl = (c.ActiveControl == this);
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
2015correctParentActiveControl = (c.ActiveControl == container);