26 references to LOWORD
System.Private.Windows.Core (1)
Windows\Win32\Foundation\WPARAM.cs (1)
39public short SIGNEDLOWORD => (short)LOWORD;
System.Windows.Forms (21)
System\Windows\Forms\Application.ParkingWindow.cs (1)
148if (m.WParamInternal.LOWORD == PInvokeCore.WM_DESTROY)
System\Windows\Forms\Control.cs (5)
11166if (Command.DispatchID(m.WParamInternal.LOWORD)) 11556int newDeviceDpi = (short)m.WParamInternal.LOWORD; 11796HWND handle = NativeWindow.GetHandleFromWindowId((short)m.WParamInternal.LOWORD); 12014MessageId msg = (MessageId)(uint)m.WParamInternal.LOWORD; 12158uint cmd = m.WParamInternal.LOWORD;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
916Keys keycode = (Keys)m.WParamInternal.LOWORD;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (1)
668if (Visible && m.WParamInternal.LOWORD == PInvoke.WA_INACTIVE && !OwnsWindow(activatedWindow))
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
3520SCROLLBAR_COMMAND loWord = (SCROLLBAR_COMMAND)m.WParamInternal.LOWORD; 3536SCROLLBAR_COMMAND loWord = (SCROLLBAR_COMMAND)m.WParamInternal.LOWORD;
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (1)
1173switch ((uint)m.WParamInternal.LOWORD)
System\Windows\Forms\Form.cs (5)
4633if ((_dpiFormSizes is not null && _dpiFormSizes.TryGetValue(m.WParamInternal.LOWORD, out desiredSize)) 4634|| OnGetDpiScaledSize(DeviceDpiInternal, m.WParamInternal.LOWORD, ref desiredSize)) 6610Active = m.WParamInternal.LOWORD != PInvoke.WA_INACTIVE; 7041uint sc = (uint)(m.WParamInternal.LOWORD & 0xFFF0); 7075if (Command.DispatchID(m.WParamInternal.LOWORD))
System\Windows\Forms\Rendering\DpiChangedEventArgs.cs (1)
20DeviceDpiNew = (short)m.WParamInternal.LOWORD;
System\Windows\Forms\Scrolling\ScrollableControl.cs (3)
1260SCROLLBAR_COMMAND loWord = (SCROLLBAR_COMMAND)m.WParamInternal.LOWORD; 1364SCROLLBAR_COMMAND loWord = (SCROLLBAR_COMMAND)m.WParamInternal.LOWORD; 1439ScrollEventType type = (ScrollEventType)m.WParamInternal.LOWORD;
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
624ScrollEventType type = (ScrollEventType)m.WParamInternal.LOWORD;
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.FlyoutDialog.cs (1)
172&& m.WParamInternal.LOWORD == PInvoke.WA_INACTIVE
System\Windows\Forms\Design\ControlDesigner.ChildSubClass.cs (1)
43if (m.MsgInternal == PInvokeCore.WM_PARENTNOTIFY && m.WParamInternal.LOWORD == PInvokeCore.WM_CREATE)
System\Windows\Forms\Design\DesignerFrame.cs (1)
500if (m.MsgInternal == PInvokeCore.WM_PARENTNOTIFY && m.WParamInternal.LOWORD == PInvokeCore.WM_CREATE)
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Internals\MessageDecoder.cs (1)
28lDescription = Parenthesize(((MessageId)(uint)wparam.LOWORD).MessageIdToString());