I have already enabled all gesture in my application.I want to add cursor to my application.
How to get hand location point as i want it to assign to mouse movement.
Any help appreciated..
thanks & regard's
Mahadeo W
Link Copied
Using HandData calculate hand location and assign it to mouse using following.
[DllImport("User32.dll")]
public static extern bool SetCursorPos(int x, int y);
Using HandData calculate hand location and assign it to mouse using following.
[DllImport("User32.dll")]
public static extern bool SetCursorPos(int x, int y);
For more complete information about compiler optimizations, see our Optimization Notice.