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)
3160
case PInvokeCore.
WM_KEYUP
:
System\Windows\Forms\Control.cs (1)
12396
case PInvokeCore.
WM_KEYUP
:
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
1482
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)
618
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)
5290
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.None, false };
5291
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.A, false };
5292
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.Tab, false };
5293
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.Menu, false };
5294
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.F10, false };
5314
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.None, false };
5315
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.A, false };
5316
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.Tab, false };
5317
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.Menu, false };
5318
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.F10, false };
5400
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.None, false, false, false, false, false, false, 0, 0, 0, 0, 0 };
5401
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, Keys.A, false, false, false, false, false, false, 0, 0, 0, 0, 0 };
5670
yield return new object[] { (int)PInvokeCore.
WM_KEYUP
, '2', handled, 0, 0, 1, (IntPtr)2 };
5884
[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);