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