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