6 writes to LParam
System.Windows.Forms (6)
winforms\Managed\System\WinForms\Application.cs (1)
889
message.
LParam
= msg.lParam;
winforms\Managed\System\WinForms\AxHost.cs (2)
2056
msg.
LParam
= win32Message.lParam;
4124
msg.
LParam
= pMsg.lParam;
winforms\Managed\System\WinForms\Form.cs (1)
5301
msg.
LParam
= win32Message.lParam;
winforms\Managed\System\WinForms\WebBrowserBase.cs (1)
327
msg.
LParam
= win32Message.lParam;
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (1)
174
msg.
LParam
= pMsg.lParam;
234 references to LParam
System.Windows.Forms (231)
winforms\Managed\System\WinForms\Application.cs (3)
882
msg.lParam = message.
LParam
;
3616
msg.lParam = m.
LParam
;
3709
msg.lParam = m.
LParam
;
winforms\Managed\System\WinForms\AxHost.cs (3)
2044
win32Message.lParam = msg.
LParam
;
3476
if (!ReflectMessageInternal(m.
LParam
, ref m))
3562
m.Result = UnsafeNativeMethods.CallWindowProc(wndProc, handle, m.Msg, m.WParam, m.
LParam
);
winforms\Managed\System\WinForms\CheckedListBox.cs (1)
1104
int state = unchecked( (int) (long)m.
LParam
);
winforms\Managed\System\WinForms\ComboBox.cs (24)
1616
int comboXMid = NativeMethods.Util.SignedLOWORD(m.
LParam
) + (editRectMid.left - comboRectMid.left);
1617
int comboYMid = NativeMethods.Util.SignedHIWORD(m.
LParam
) + (editRectMid.top - comboRectMid.top);
1842
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
1843
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
1853
OnClick(new MouseEventArgs(MouseButtons.Left, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
1854
OnMouseClick(new MouseEventArgs(MouseButtons.Left, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
1910
OnMouseUp(new MouseEventArgs(MouseButtons.Middle, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
1930
UnsafeNativeMethods.SendMessage(new HandleRef(this, Handle), NativeMethods.WM_CONTEXTMENU, m.WParam, m.
LParam
);
1947
if (Cursor != DefaultCursor && childEdit != null && m.HWnd == childEdit.Handle && NativeMethods.Util.LOWORD(m.
LParam
) == NativeMethods.HTCLIENT) {
3480
dropDownHandle = m.
LParam
;
3645
Marshal.StructureToPtr(mis, m.
LParam
, false);
3727
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
3728
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
3739
OnClick(new MouseEventArgs(MouseButtons.Left, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3740
OnMouseClick(new MouseEventArgs(MouseButtons.Left, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3814
if ((unchecked( (int) (long)m.
LParam
) & NativeMethods.PRF_CLIENT) == NativeMethods.PRF_CLIENT) {
3919
if (AccessibilityImprovements.Level3 && m.
LParam
== (IntPtr)NativeMethods.UiaRootObjectId &&
3942
m.
LParam
,
3950
if (NativeMethods.OBJID_CLIENT == unchecked((int)(long)m.
LParam
)) {
winforms\Managed\System\WinForms\Control.cs (46)
7863
if (m.
LParam
== IntPtr.Zero) {
7888
Marshal.Copy(bytes, 0, m.
LParam
, bytes.Length);
7889
Marshal.Copy(nullBytes, 0, unchecked((IntPtr)((long)m.
LParam
+ (long)bytes.Length)), nullBytes.Length);
11098
m.Result = control.SendMessage(NativeMethods.WM_REFLECT + m.Msg, m.WParam, m.
LParam
);
12833
if (IntPtr.Zero == m.
LParam
) {
12837
if (ReflectMessageInternal(m.
LParam
, ref m)) {
12858
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
12859
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
12865
if (unchecked((int)(long)m.
LParam
) == -1) {
12903
Control control = Control.FromHandleInternal(m.
LParam
);
13030
Debug.WriteLineIf(CompModSwitches.MSAA.TraceInfo, "In WmGetObject, this = " + this.GetType().FullName + ", lParam = " + m.
LParam
.ToString());
13034
if (m.Msg == NativeMethods.WM_GETOBJECT && m.
LParam
== (IntPtr)NativeMethods.UiaRootObjectId && this.SupportsUiaProviders) {
13047
m.
LParam
,
13053
AccessibleObject ctrlAccessibleObject = GetAccessibilityObject(unchecked((int)(long)m.
LParam
));
13187
Debug.Assert(m.
LParam
!= IntPtr.Zero, "m.lparam is null");
13227
IntPtr hmenu = m.
LParam
;
13390
OnMouseDown(new MouseEventArgs(button, clicks, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
13476
OnMouseMove(new MouseEventArgs(MouseButtons, 0, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
13487
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
13488
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
13519
OnClick(new MouseEventArgs(button, clicks, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
13520
OnMouseClick(new MouseEventArgs(button, clicks, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
13526
OnDoubleClick(new MouseEventArgs(button, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
13527
OnMouseDoubleClick(new MouseEventArgs(button, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
13532
OnMouseUp(new MouseEventArgs(button, clicks, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
13551
Point p = new Point(NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
));
13583
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR*)m.
LParam
;
13586
m.Result = UnsafeNativeMethods.SendMessage(new HandleRef(null, nmhdr->hwndFrom), NativeMethods.WM_REFLECT + m.Msg, m.WParam, m.
LParam
);
13590
UnsafeNativeMethods.SendMessage(new HandleRef(null, nmhdr->hwndFrom), NativeMethods.WM_REFLECT + m.Msg, m.WParam, m.
LParam
);
13631
m.Result = control.SendMessage(NativeMethods.WM_REFLECT + m.Msg, handle, m.
LParam
);
13818
if (m.WParam == InternalHandle && NativeMethods.Util.LOWORD(m.
LParam
) == NativeMethods.HTCLIENT) {
13838
NativeMethods.WINDOWPOS* wp = (NativeMethods.WINDOWPOS *)m.
LParam
;
13868
hWnd = m.
LParam
;
14078
NativeMethods.WINDOWPOS* wp = (NativeMethods.WINDOWPOS *)m.
LParam
;
14268
if (!ReflectMessageInternal(m.
LParam
, ref m)) {
14418
SendMessage(m.Msg, (IntPtr)((unchecked((int)(long)m.WParam) << 16) | (int)keyState), m.
LParam
);
14428
m.
LParam
);
18526
lpmsg.lParam = msg.
LParam
;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (10)
22319
if (ke.KeyCode != Keys.ProcessKey || (int) m.
LParam
!= 0x01) // Changing IME context does not trigger editing mode
22340
this.editingControl.SendMessage(m.Msg, m.WParam, m.
LParam
);
22357
this.editingControl.SendMessage(m.Msg, m.WParam, m.
LParam
);
29851
int x = unchecked( (int)(short)(long)m.
LParam
);
29852
int y = unchecked( (int) (long)m.
LParam
) >> 16;
29858
if (unchecked( (int) (long)m.
LParam
) == -1)
29925
if (m.
LParam
== IntPtr.Zero)
29930
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR *)m.
LParam
;
29947
Marshal.StructureToPtr(ttt, m.
LParam
, false);
29990
this.editingControl.SendMessage(m.Msg, m.WParam, m.
LParam
);
winforms\Managed\System\WinForms\Form.cs (7)
3778
m.Result = UnsafeNativeMethods.DefFrameProc(m.HWnd, ctlClient.Handle, m.Msg, m.WParam, m.
LParam
);
3781
m.Result = UnsafeNativeMethods.DefMDIChildProc(m.HWnd, m.Msg, m.WParam, m.
LParam
);
5290
win32Message.lParam = msg.
LParam
;
7228
Marshal.StructureToPtr(mmi, m.
LParam
, false);
7293
else if (Handle == m.
LParam
) {
7357
int x = NativeMethods.Util.LOWORD(m.
LParam
);
7358
int y = NativeMethods.Util.HIWORD(m.
LParam
);
winforms\Managed\System\WinForms\GroupBox.cs (1)
803
if (unchecked((int)(long)m.
LParam
) == NativeMethods.OBJID_QUERYCLASSNAMEIDX) {
winforms\Managed\System\WinForms\InputLanguage.cs (2)
333
return new InputLanguageChangedEventArgs(new InputLanguage(m.
LParam
), unchecked((byte)(long)m.WParam));
342
InputLanguage inputLanguage = new InputLanguage(m.
LParam
);
winforms\Managed\System\WinForms\Label.cs (1)
1740
Point pt = new Point(unchecked((int)(long)m.
LParam
));
winforms\Managed\System\WinForms\LinkLabel.cs (1)
1924
if (m.WParam == InternalHandle && NativeMethods.Util.LOWORD(m.
LParam
) == NativeMethods.HTCLIENT) {
winforms\Managed\System\WinForms\ListBox.cs (14)
2276
if ((NativeMethods.PRF_NONCLIENT & (int)m.
LParam
) != 0 && Application.RenderWithVisualStyles && this.BorderStyle == BorderStyle.Fixed3D) {
2378
Marshal.StructureToPtr(mis, m.
LParam
, false);
2412
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
2413
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
2421
OnClick(new MouseEventArgs(MouseButtons.Left, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
2422
OnMouseClick(new MouseEventArgs(MouseButtons.Left, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
2430
OnDoubleClick(new MouseEventArgs(MouseButtons.Left, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
2431
OnMouseDoubleClick(new MouseEventArgs(MouseButtons.Left, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
2459
int rx = NativeMethods.Util.SignedLOWORD(m.
LParam
);
2460
int ry = NativeMethods.Util.SignedHIWORD(m.
LParam
);
winforms\Managed\System\WinForms\ListView.cs (20)
2490
NativeMethods.NMLVCUSTOMDRAW* nmcd = (NativeMethods.NMLVCUSTOMDRAW*)m.
LParam
;
5419
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
5420
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
5453
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR*)m.
LParam
;
5460
NativeMethods.NMCUSTOMDRAW* nmcd = (NativeMethods.NMCUSTOMDRAW*)m.
LParam
;
5814
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR*)m.
LParam
;
5883
NativeMethods.NMLISTVIEW* nmlv = (NativeMethods.NMLISTVIEW*)m.
LParam
;
5900
NativeMethods.NMLISTVIEW* nmlv = (NativeMethods.NMLISTVIEW*)m.
LParam
;
6036
if (this.VirtualMode && m.
LParam
!= IntPtr.Zero) {
6118
Marshal.StructureToPtr(dispInfo, (IntPtr) m.
LParam
, false);
6123
if (VirtualMode && m.
LParam
!= IntPtr.Zero) {
6140
if (ShowItemToolTips && m.
LParam
!= IntPtr.Zero) {
6163
Marshal.StructureToPtr(infoTip, (IntPtr) m.
LParam
, false);
6227
if ((NativeMethods.PRF_NONCLIENT & (int)m.
LParam
) != 0 && Application.RenderWithVisualStyles && this.BorderStyle == BorderStyle.Fixed3D) {
6284
OnMouseDoubleClick(new MouseEventArgs(downButton, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
6288
OnMouseUp(new MouseEventArgs(downButton, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
6314
OnMouseUp(new MouseEventArgs(downButton, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
winforms\Managed\System\WinForms\MaskedTextBox.cs (3)
3056
if ((m.
LParam
.ToInt32() & NativeMethods.GCS_COMPSTR) != 0)
3061
else if ((m.
LParam
.ToInt32() & NativeMethods.GCS_RESULTSTR) != 0)
3177
if ((NativeMethods.PRF_NONCLIENT & unchecked( (int) (long)m.
LParam
)) != 0 && Application.RenderWithVisualStyles && this.BorderStyle == BorderStyle.Fixed3D) {
winforms\Managed\System\WinForms\Menu.cs (2)
629
Menu menu = (m.
LParam
== handle) ? this : FindMenuItemInternal(FindHandle, m.
LParam
);
winforms\Managed\System\WinForms\MenuItem.cs (1)
1539
Marshal.StructureToPtr(mis, m.
LParam
, false);
winforms\Managed\System\WinForms\MessageDecoder.cs (1)
359
return ToString(message.HWnd, message.Msg, message.WParam, message.
LParam
, message.Result);
winforms\Managed\System\WinForms\MonthCalendar.cs (1)
2323
Marshal.StructureToPtr(nmmcds, m.
LParam
, false);
winforms\Managed\System\WinForms\NativeWindow.cs (3)
833
m.Result = UnsafeNativeMethods.DefWindowProc(m.HWnd, m.Msg, m.WParam, m.
LParam
);
836
m.Result = UnsafeNativeMethods.CallWindowProc(defWindowProc, m.HWnd, m.Msg, m.WParam, m.
LParam
);
840
m.Result = previousWindow.Callback(m.HWnd, m.Msg, m.WParam, m.
LParam
);
winforms\Managed\System\WinForms\NotifyIcon.cs (3)
852
switch ((int)msg.
LParam
) {
901
if (IntPtr.Zero == msg.
LParam
) {
954
Debug.Assert(m.
LParam
!= IntPtr.Zero, "m.lparam is null");
winforms\Managed\System\WinForms\Printing\PrintPreviewControl.cs (2)
726
if (m.
LParam
!= IntPtr.Zero) {
789
if (m.
LParam
!= IntPtr.Zero) {
winforms\Managed\System\WinForms\PropertyGrid.cs (9)
4876
if ((long)m.
LParam
== 0) {
4884
if ((long)m.
LParam
== 0) {
4893
if ((long)m.
LParam
== 0) {
4902
if ((long)m.
LParam
== 0) {
4911
GetDataFromCopyData(m.
LParam
);
4993
m.Result = (IntPtr) gridView.GetPropertyLocation(propName, m.
LParam
== IntPtr.Zero, m.WParam == IntPtr.Zero);
4999
m.Result = gridView.SendMessage(m.Msg, m.WParam, m.
LParam
);
5002
if( m.
LParam
!= IntPtr.Zero ) {
5003
string tabTypeName = AutomationMessages.ReadAutomationText(m.
LParam
);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (11)
1793
m.Result = ctl.SendMessage(m.Msg, m.WParam, m.
LParam
);
5267
if (m.
LParam
!= IntPtr.Zero) {
5268
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR*)m.
LParam
;
5351
UnsafeNativeMethods.PostMessage(new HandleRef(Edit, Edit.Handle), NativeMethods.WM_IME_COMPOSITION, m.WParam, m.
LParam
);
5375
if (unchecked( (int) (long)m.
LParam
) == lastMouseMove) {
5378
lastMouseMove = unchecked( (int) (long)m.
LParam
);
6079
IntPtr activatedWindow = (IntPtr)m.
LParam
;
6847
if (m.
LParam
!= IntPtr.Zero) {
6848
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR*)m.
LParam
;
6880
if (unchecked( (int) (long)m.
LParam
) == lastMove) {
6883
lastMove = unchecked( (int) (long)m.
LParam
);
winforms\Managed\System\WinForms\RichTextBox.cs (2)
3408
if (m.
LParam
== Handle && !GetState(STATE_CREATINGHANDLE))
3721
if (unchecked((int)(long)m.
LParam
) == NativeMethods.OBJID_QUERYCLASSNAMEIDX) {
winforms\Managed\System\WinForms\ScrollableControl.cs (2)
1307
if (m.
LParam
!= IntPtr.Zero) {
1385
if (m.
LParam
!= IntPtr.Zero) {
winforms\Managed\System\WinForms\SplitContainer.cs (1)
2350
if (m.WParam == InternalHandle && ((int)m.
LParam
& 0x0000FFFF) == NativeMethods.HTCLIENT) {
winforms\Managed\System\WinForms\StatusBar.cs (1)
1100
int x = NativeMethods.Util.LOWORD(m.
LParam
);
winforms\Managed\System\WinForms\StatusStrip.cs (4)
558
int x = NativeMethods.Util.LOWORD(m.
LParam
);
559
int y = NativeMethods.Util.HIWORD(m.
LParam
);
618
int x = NativeMethods.Util.LOWORD(m.
LParam
);
619
int y = NativeMethods.Util.HIWORD(m.
LParam
);
winforms\Managed\System\WinForms\TabControl.cs (1)
2045
Marshal.StructureToPtr(ttt, m.
LParam
, false);
winforms\Managed\System\WinForms\TextBox.cs (1)
845
if ((NativeMethods.PRF_NONCLIENT & (int)m.
LParam
) != 0 && Application.RenderWithVisualStyles && this.BorderStyle == BorderStyle.Fixed3D) {
winforms\Managed\System\WinForms\TextBoxBase.cs (3)
2248
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
2249
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
2255
if (unchecked((int)(long)m.
LParam
) == -1) {
winforms\Managed\System\WinForms\ToolBar.cs (2)
1592
Marshal.StructureToPtr(ttt, m.
LParam
, false);
1614
Marshal.StructureToPtr(ttt, m.
LParam
, false);
winforms\Managed\System\WinForms\ToolStripDropDown.cs (2)
2149
Debug.Fail("Why are we being activated when we're not visible? Deactivating thingee is " + WindowsFormsUtils.GetControlInformation(m.
LParam
));
2153
Debug.WriteLineIf(ToolStrip.SnapFocusDebug.TraceVerbose, "[ToolStripDropDown.WndProc] activating thingee is " + WindowsFormsUtils.GetControlInformation(m.
LParam
));
winforms\Managed\System\WinForms\ToolStripManager.cs (5)
1323
/*x=*/NativeMethods.Util.SignedLOWORD(m.
LParam
),
1324
/*y=*/NativeMethods.Util.SignedHIWORD(m.
LParam
));
1335
/*x=*/NativeMethods.Util.SignedLOWORD(m.
LParam
),
1336
/*y=*/NativeMethods.Util.SignedHIWORD(m.
LParam
));
1698
Keys keyData = (Keys)(int)m.
LParam
;
winforms\Managed\System\WinForms\ToolTip.cs (1)
2391
NativeMethods.WINDOWPOS* wp = (NativeMethods.WINDOWPOS *)m.
LParam
;
winforms\Managed\System\WinForms\TreeView.cs (32)
2666
OnMouseDown(new MouseEventArgs(button, clicks, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
2716
Marshal.StructureToPtr(nmcd, m.
LParam
, false);
2789
Marshal.StructureToPtr(nmcd, m.
LParam
, false);
2899
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR*)m.
LParam
;
2964
Marshal.StructureToPtr(ttt, m.
LParam
, false);
2969
NativeMethods.NMHDR* nmhdr = (NativeMethods.NMHDR *)m.
LParam
;
2978
NativeMethods.NMTREEVIEW* nmtv = (NativeMethods.NMTREEVIEW*)m.
LParam
;
3133
if ((NativeMethods.PRF_NONCLIENT & (int)m.
LParam
) != 0 && Application.RenderWithVisualStyles && this.BorderStyle == BorderStyle.Fixed3D) {
3257
tvhip.pt_x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
3258
tvhip.pt_y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
3265
OnMouseDown(new MouseEventArgs(MouseButtons.Left, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3285
tvhi.pt_x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
3286
tvhi.pt_y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
3297
OnNodeMouseClick(new TreeNodeMouseClickEventArgs(NodeFromHandle(hnode), downButton, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
)));
3300
OnClick(new MouseEventArgs(downButton, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3301
OnMouseClick(new MouseEventArgs(downButton, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3308
OnNodeMouseDoubleClick(new TreeNodeMouseClickEventArgs(NodeFromHandle(hnode), downButton, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
)));
3309
OnDoubleClick(new MouseEventArgs(downButton, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3310
OnMouseDoubleClick(new MouseEventArgs(downButton, 2, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3315
OnMouseUp(new MouseEventArgs(downButton, 1, NativeMethods.Util.SignedLOWORD(m.
LParam
), NativeMethods.Util.SignedHIWORD(m.
LParam
), 0));
3355
tvhit.pt_x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
3356
tvhit.pt_y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
3399
bool keyboardActivated = (unchecked((int)(long)m.
LParam
) == -1);
winforms\Managed\System\WinForms\WebBrowser.cs (2)
1649
int x = NativeMethods.Util.SignedLOWORD(m.
LParam
);
1650
int y = NativeMethods.Util.SignedHIWORD(m.
LParam
);
winforms\Managed\System\WinForms\WebBrowserBase.cs (3)
304
win32Message.lParam = msg.
LParam
;
450
if (!ReflectMessageInternal(m.
LParam
, ref m))
1981
NativeMethods.WINDOWPOS* wp = (NativeMethods.WINDOWPOS *)m.
LParam
;
System.Workflow.ComponentModel (3)
AuthoringOM\Design\DesignerWidgets.cs (2)
2256
if (msg.Msg == NativeMethods.WM_NOTIFY && msg.
LParam
!= IntPtr.Zero && !this.inplaceTipRectangle.IsEmpty)
2258
NativeMethods.NMHDR notifyHeader = Marshal.PtrToStructure(msg.
LParam
, typeof(NativeMethods.NMHDR)) as NativeMethods.NMHDR;
AuthoringOM\Design\WorkflowView.cs (1)
1418
int LParam = (int)m.
LParam
;