当 WM_LBUTTONDOWN 在 vb.net 中发送时,我想从参数中获取 x、y 位置。
我得到了这个来制作参数,但我如何从中获得位置。
IntPtr lParam = (IntPtr)((y << 16) | x);
我的功能:
Protected Overrides Sub WndProc(ByRef m As Message)
Select Case m.Msg
Case WM_LBUTTONDOWN
'Get the X, Y from m.lparam
Case Else
MyBase.WndProc(m)
End Select
End Sub
更新:我刚试过这个,它工作得很好。
Dim pos As New System.Drawing.Point(CInt(m.LParam))