11 references to FromChildHandleInternal
System.Windows.Forms (11)
winforms\Managed\System\WinForms\Application.cs (1)
3663Control target = Control.FromChildHandleInternal(msg.hwnd);
winforms\Managed\System\WinForms\ContainerControl.cs (1)
678if (focusHandle == IntPtr.Zero || Control.FromChildHandleInternal(focusHandle) != activeControl) {
winforms\Managed\System\WinForms\Control.cs (4)
6401return FromChildHandleInternal(handle); 6497Control ctl = FromChildHandleInternal(hwnd); 10227target = Control.FromChildHandleInternal(msg.HWnd); 18517Control target = Control.FromChildHandleInternal(lpmsg.hwnd);
winforms\Managed\System\WinForms\Control.Ime.cs (1)
296ctl = FromChildHandleInternal( UnsafeNativeMethods.GetFocus() );
winforms\Managed\System\WinForms\ToolStripManager.cs (3)
1257else if (!(Control.FromChildHandleInternal(hwndCurrentActiveWindow.Handle) is ToolStripDropDown) // its NOT a dropdown 1283Control control = Control.FromChildHandleInternal(m.HWnd); 1559Control activeControl = Control.FromChildHandleInternal(m.HWnd);
winforms\Managed\System\WinForms\ToolTip.cs (1)
1296baseVar = Control.FromChildHandleInternal(found);