2 implementations of ActiveControl
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
284public Control? ActiveControl
System.Windows.Forms.Tests (1)
System\Windows\Forms\ControlTests.Methods.cs (1)
14183public Control ActiveControl { get; set; }
10 writes to ActiveControl
System.Windows.Forms (10)
System\Windows\Forms\Control.cs (2)
5235control.ActiveControl = this; 10136c.ActiveControl = this;
System\Windows\Forms\Controls\TabControl\TabControl.cs (2)
1870c.ActiveControl = this; 1984c.ActiveControl = this;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4250c.ActiveControl = this;
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1447c.ActiveControl = this;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (4)
1151c.ActiveControl = this; 1888c.ActiveControl = this; 2005c.ActiveControl = container; 2375c.ActiveControl = this;
6 references to ActiveControl
System.Windows.Forms (6)
System\Windows\Forms\Controls\TabControl\TabControl.cs (3)
1850while (c.ActiveControl is ContainerControl) 1852c = (IContainerControl)c.ActiveControl; 1855c.ActiveControl?.Focus();
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4251correctParentActiveControl = (c.ActiveControl == this);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
1448correctParentActiveControl = (c.ActiveControl == this);
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
2006correctParentActiveControl = (c.ActiveControl == container);