2 implementations of ActiveControl
System.Windows.Forms (1)
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
283
public Control?
ActiveControl
System.Windows.Forms.Tests (1)
System\Windows\Forms\ControlTests.Methods.cs (1)
14152
public Control
ActiveControl
{ get; set; }
9 writes to ActiveControl
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (1)
5193
control.
ActiveControl
= this;
System\Windows\Forms\Controls\TabControl\TabControl.cs (2)
1898
c.
ActiveControl
= this;
2020
c.
ActiveControl
= this;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4144
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;
1888
c.
ActiveControl
= this;
2005
c.
ActiveControl
= container;
2375
c.
ActiveControl
= this;
7 references to ActiveControl
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (1)
9942
c?.
ActiveControl
= this;
System\Windows\Forms\Controls\TabControl\TabControl.cs (3)
1878
while (c.
ActiveControl
is ContainerControl)
1880
c = (IContainerControl)c.
ActiveControl
;
1883
c.
ActiveControl
?.Focus();
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4145
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)
2006
correctParentActiveControl = (c.
ActiveControl
== container);