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