6 writes to wParam
System.Windows.Forms (5)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1762wParam = (WPARAM)char.ToUpper(charCode, CultureInfo.CurrentCulture),
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
1871lpmsg->wParam = msg.WParamInternal;
System\Windows\Forms\Application.ThreadContext.cs (2)
880msg.wParam = message.WParamInternal; 982msg.wParam = m.WParamInternal;
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (1)
335wParam = (WPARAM)char.ToUpper(charCode, CultureInfo.CurrentCulture),
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Message.cs (1)
143wParam = (nuint)WParamInternal,
15 references to wParam
System.Windows.Forms (14)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1701msg.WParamInternal = win32Message.wParam;
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (3)
377if (lpmsg->message == PInvokeCore.WM_KEYDOWN && lpmsg->wParam == (WPARAM)(nuint)VIRTUAL_KEY.VK_TAB) 383PInvokeCore.SendMessage(target, lpmsg->message, lpmsg->wParam, lpmsg->lParam); 1858Message msg = Message.Create(lpmsg->hwnd, lpmsg->message, lpmsg->wParam, lpmsg->lParam);
System\Windows\Forms\ActiveX\Control_ActiveXControlInterfaces.cs (1)
64bool processed = ProcessMnemonic((char)(nuint)pMsg->wParam);
System\Windows\Forms\Application.ComponentManager.cs (1)
247PInvoke.PostQuitMessage((int)msg.wParam);
System\Windows\Forms\Application.cs (1)
821message.WParamInternal = msg.wParam;
System\Windows\Forms\Application.LightThreadContext.cs (1)
99PInvoke.PostQuitMessage((int)msg.wParam);
System\Windows\Forms\Application.ThreadContext.cs (3)
867Message message = Message.Create(msg.hwnd, msg.message, msg.wParam, msg.lParam); 923if ((int)(uint)msg.wParam == 3 && ((int)msg.lParam & breakLParamMask) == breakLParamMask) 939Message m = Message.Create(msg.hwnd, msg.message, msg.wParam, msg.lParam);
System\Windows\Forms\Controls\WebBrowser\WebBrowser.WebBrowserSite.cs (1)
164int keyCode = (int)(uint)lpMsg->wParam | (int)ModifierKeys;
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (1)
263msg.WParamInternal = win32Message.wParam;
System\Windows\Forms\Form.cs (1)
4719msg.WParamInternal = win32Message.wParam;
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Message.cs (1)
92=> Create(msg->hwnd, msg->message, msg->wParam, msg->lParam);