c# / Kinect控制鼠标光标

本文关键字:鼠标 光标 控制 Kinect | 更新日期: 2023-09-27 18:13:30

如果我想控制鼠标光标,包括点击等,我需要使用什么API ?例如,我正在开发一款使用Kinect的PC应用程序,我希望用它来控制鼠标光标,而不是创建我自己的应用程序内光标。我需要"利用"什么来实现这一点?

谢谢。

c# / Kinect控制鼠标光标

参见Marcos Placona的回答:如何在c#中模拟鼠标点击?

现在只需要添加鼠标移动事件。更多信息在这里:http://pinvoke.net/default.aspx/user32.mouse_event

using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
public class Form1 : Form
{
   [DllImport("user32.dll",CharSet=CharSet.Auto, CallingConvention=CallingConvention.StdCall)]
   public static extern void mouse_event(uint dwFlags, uint dx, uint dy, uint cButtons, uint dwExtraInfo);
   private const int MOUSEEVENTF_LEFTDOWN = 0x02;
   private const int MOUSEEVENTF_LEFTUP = 0x04;
   private const int MOUSEEVENTF_RIGHTDOWN = 0x08;
   private const int MOUSEEVENTF_RIGHTUP = 0x10;
   public Form1()
   {
   }
   public void DoMouseClick()
   {
      //Call the imported function with the cursor's current position
      int X = Cursor.Position.X;
      int Y = Cursor.Position.Y;
      mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, X, Y, 0, 0);
   }
   //...other code needed for the application
}