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)
5207control.ActiveControl = this; 9957c?.ActiveControl = this;
System\Windows\Forms\Controls\TabControl\TabControl.cs (2)
1901c.ActiveControl = this; 2023c.ActiveControl = this;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4138c.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)
1881while (c.ActiveControl is ContainerControl) 1883c = (IContainerControl)c.ActiveControl; 1886c.ActiveControl?.Focus();
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4139correctParentActiveControl = (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);