How to parse WM_LBUTTONDOWN lParam to get X & Y co-ordinate

Night

Newcomer
Joined
Apr 24, 2003
Messages
13
Location
Ha Noi - Viet Nam
The x-coordinate of the cursor is the low-order word, and the y-coordinate of the cursor is the high-order word.

Window has LOWORD and HIWORD macros for this. But it's for C++
How can I do this in C#

I catch this message using overiden WndProc method.
 
Back
Top