10 writes to lParam
System.Windows.Forms (10)
winforms\Managed\System\WinForms\Application.cs (3)
882msg.lParam = message.LParam; 3616msg.lParam = m.LParam; 3709msg.lParam = m.LParam;
winforms\Managed\System\WinForms\AxHost.cs (2)
2044win32Message.lParam = msg.LParam; 2117msg.lParam = (IntPtr) 0x20180001;
winforms\Managed\System\WinForms\Control.cs (2)
16588msg.lParam = NativeMethods.Util.MAKELPARAM(pt.x, pt.y); 18526lpmsg.lParam = msg.LParam;
winforms\Managed\System\WinForms\Form.cs (1)
5290win32Message.lParam = msg.LParam;
winforms\Managed\System\WinForms\WebBrowserBase.cs (2)
304win32Message.lParam = msg.LParam; 395msg.lParam = (IntPtr) 0x20180001;
13 references to lParam
System.Windows.Forms (13)
winforms\Managed\System\WinForms\Application.cs (4)
889message.LParam = msg.lParam; 3605Message m = Message.Create(msg.hwnd, msg.message, msg.wParam, msg.lParam); 3653if (unchecked( (int) (long)msg.wParam) == 3 && ( unchecked( (int) (long)msg.lParam) & breakLParamMask) == breakLParamMask) { // ctrl-brk 3666Message m = Message.Create(msg.hwnd, msg.message, msg.wParam, msg.lParam);
winforms\Managed\System\WinForms\AxHost.cs (2)
2056msg.LParam = win32Message.lParam; 4124msg.LParam = pMsg.lParam;
winforms\Managed\System\WinForms\Control.cs (4)
16574pt.x = NativeMethods.Util.LOWORD(msg.lParam); 16575pt.y = NativeMethods.Util.HIWORD(msg.lParam); 16602target.SendMessage(msg.message, msg.wParam, msg.lParam); 18514Message msg = Message.Create(lpmsg.hwnd, lpmsg.message, lpmsg.wParam, lpmsg.lParam);
winforms\Managed\System\WinForms\Form.cs (1)
5301msg.LParam = win32Message.lParam;
winforms\Managed\System\WinForms\WebBrowserBase.cs (1)
327msg.LParam = win32Message.lParam;
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (1)
174msg.LParam = pMsg.lParam;