1 implementation of ActiveControl
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ContainerControl.cs (1)
284
public Control
ActiveControl
{
10 writes to ActiveControl
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ContainerControl.cs (1)
1361
c.
ActiveControl
= this;
winforms\Managed\System\WinForms\Control.cs (2)
6380
c.
ActiveControl
= this;
11649
c.
ActiveControl
= this;
winforms\Managed\System\WinForms\SplitContainer.cs (4)
1326
c.
ActiveControl
= this;
1985
c.
ActiveControl
= this;
2086
c.
ActiveControl
= container;
2468
c.
ActiveControl
= this;
winforms\Managed\System\WinForms\TabControl.cs (2)
1974
c.
ActiveControl
= this;
2101
c.
ActiveControl
= this;
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4246
c.
ActiveControl
= this;
7 references to ActiveControl
System.Windows.Forms (7)
winforms\Managed\System\WinForms\ContainerControl.cs (1)
1362
correctParentActiveControl = (c.
ActiveControl
== this);
winforms\Managed\System\WinForms\SplitContainer.cs (1)
2087
correctParentActiveControl = (c.
ActiveControl
== container);
winforms\Managed\System\WinForms\TabControl.cs (4)
1952
while (c.
ActiveControl
is ContainerControl) {
1953
c = (IContainerControl) c.
ActiveControl
;
1955
if (c.
ActiveControl
!= null)
1957
c.
ActiveControl
.FocusInternal();
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4247
correctParentActiveControl = (c.
ActiveControl
== this);