34 references to WM_KEYUP
System.Private.Windows.Core (1)
Windows\Win32\MessageId.cs (1)
135PInvokeCore.WM_KEYUP => "WM_KEYUP",
System.Windows.Forms (12)
System\Windows\Forms\ActiveX\AxHost.cs (1)
3163case PInvokeCore.WM_KEYUP:
System\Windows\Forms\Control.cs (1)
12399case PInvokeCore.WM_KEYUP:
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
1491case PInvokeCore.WM_KEYUP:
System\Windows\Forms\Controls\ListView\ListView.cs (1)
6976case PInvokeCore.WM_KEYUP:
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.ModalMenuFilter.cs (1)
627case PInvokeCore.WM_KEYUP:
System\Windows\Forms\SendKeys\SendKeys.cs (7)
187AddEvent(new SKEvent(altnoctrldown ? PInvokeCore.WM_SYSKEYUP : PInvokeCore.WM_KEYUP, (uint)vk, s_startNewChar, hwnd)); 199AddEvent(new SKEvent(PInvokeCore.WM_KEYUP, (int)Keys.ShiftKey, false, hwnd)); 205AddEvent(new SKEvent(PInvokeCore.WM_KEYUP, (int)Keys.ControlKey, false, hwnd)); 697if (skEvent.WM == PInvokeCore.WM_KEYUP || skEvent.WM == PInvokeCore.WM_SYSKEYUP) 765if ((skEvent.WM == PInvokeCore.WM_KEYUP) || (skEvent.WM == PInvokeCore.WM_SYSKEYUP)) 794AddEvent(new SKEvent(PInvokeCore.WM_KEYUP, (int)Keys.ShiftKey, false, default)); 798AddEvent(new SKEvent(PInvokeCore.WM_KEYUP, (int)Keys.ControlKey, false, default));
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\PbrsForward.cs (2)
111PInvokeCore.SendMessage(hwnd, PInvokeCore.WM_KEYUP, bk.KeyUp.WParamInternal, bk.KeyUp.LParamInternal); 129case (int)PInvokeCore.WM_KEYUP:
System.Windows.Forms.Tests (18)
System\Windows\Forms\ControlTests.Methods.cs (14)
5277yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.None, false }; 5278yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.A, false }; 5279yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.Tab, false }; 5280yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.Menu, false }; 5281yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.F10, false }; 5301yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.None, false }; 5302yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.A, false }; 5303yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.Tab, false }; 5304yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.Menu, false }; 5305yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.F10, false }; 5387yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.None, false, false, false, false, false, false, 0, 0, 0, 0, 0 }; 5388yield return new object[] { (int)PInvokeCore.WM_KEYUP, Keys.A, false, false, false, false, false, false, 0, 0, 0, 0, 0 }; 5657yield return new object[] { (int)PInvokeCore.WM_KEYUP, '2', handled, 0, 0, 1, (IntPtr)2 }; 5871[InlineData((int)PInvokeCore.WM_KEYUP)]
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (2)
1532yield return new object[] { (int)PInvokeCore.WM_KEYUP, wParam, '2', handled, handled, 0, 0, 1, wParam }; 1750[InlineData((int)PInvokeCore.WM_KEYUP)]
System\Windows\Forms\ListViewTests.cs (1)
5491PInvokeCore.SendMessage(listView, PInvokeCore.WM_KEYUP, (WPARAM)keyCode, (LPARAM)lParam);
System\Windows\Forms\MessageTests.cs (1)
311yield return new object[] { PInvokeCore.WM_KEYUP, " (WM_KEYUP)" };
System.Windows.Forms.TestUtilities (1)
KeyboardSimulator.cs (1)
22PInvokeCore.SendMessage(control, PInvokeCore.WM_KEYUP, (WPARAM)keyCode, lParam);