7 writes to hwnd
System.Windows.Forms (7)
winforms\Managed\System\WinForms\Application.cs (2)
879msg.hwnd = message.HWnd; 3613msg.hwnd = m.HWnd;
winforms\Managed\System\WinForms\AxHost.cs (2)
2045win32Message.hwnd = msg.HWnd; 2114msg.hwnd = (ContainingControl == null) ? IntPtr.Zero : ContainingControl.Handle;
winforms\Managed\System\WinForms\Form.cs (1)
5291win32Message.hwnd = msg.HWnd;
winforms\Managed\System\WinForms\WebBrowserBase.cs (2)
305win32Message.hwnd = msg.HWnd; 392msg.hwnd = IntPtr.Zero;
21 references to hwnd
System.Windows.Forms (21)
winforms\Managed\System\WinForms\Application.cs (9)
886message.HWnd = msg.hwnd; 2110if (msg.hwnd != IntPtr.Zero && SafeNativeMethods.IsWindowUnicode(new HandleRef(null, msg.hwnd))) { 3535if (msg.hwnd != IntPtr.Zero && SafeNativeMethods.IsWindowUnicode(new HandleRef(null, msg.hwnd))) { 3605Message m = Message.Create(msg.hwnd, msg.message, msg.wParam, msg.lParam); 3663Control target = Control.FromChildHandleInternal(msg.hwnd); 3666Message m = Message.Create(msg.hwnd, msg.message, msg.wParam, msg.lParam); 3697IntPtr hwndRoot = UnsafeNativeMethods.GetAncestor(new HandleRef(null, msg.hwnd), NativeMethods.GA_ROOT);
winforms\Managed\System\WinForms\AxHost.cs (2)
2057msg.HWnd = win32Message.hwnd; 4125msg.HWnd = pMsg.hwnd;
winforms\Managed\System\WinForms\Control.cs (6)
16568if (msg.hwnd != control.Handle && msg.message >= NativeMethods.WM_MOUSEFIRST && msg.message <= NativeMethods.WM_MOUSELAST) { 16572IntPtr hwndMap = msg.hwnd == IntPtr.Zero ? hwndParent : msg.hwnd; 18514Message msg = Message.Create(lpmsg.hwnd, lpmsg.message, lpmsg.wParam, lpmsg.lParam); 18517Control target = Control.FromChildHandleInternal(lpmsg.hwnd); 18534if (SafeNativeMethods.IsWindowUnicode(new HandleRef(null, lpmsg.hwnd))) {
winforms\Managed\System\WinForms\Form.cs (1)
5302msg.HWnd = win32Message.hwnd;
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
861SafeNativeMethods.UpdateWindow(new HandleRef(null, msg.hwnd));
winforms\Managed\System\WinForms\WebBrowserBase.cs (1)
328msg.HWnd = win32Message.hwnd;
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (1)
175msg.HWnd = pMsg.hwnd;