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