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