[转]C#模拟实现鼠标自动点击与消息发送功能

一个简单的实现版本,没有去Hook键鼠等操作,事先录制好操作步骤(将鼠标移动到需要操作的位置,按下热键执行相应动作),点击运行即可。

主要还是用windows api来实现,模拟点击、右击、双击、发送文本等。

代码可能略长一点,下面发下关键代码

主要的思路就是操作热键的时候,将操作类型以及坐标记录到一个List中,然后利用Windows Api循环执行List中的数据

实现功能

模拟鼠标点击、文本输入

开发环境

开发工具: Visual Studio 2013

.NET Framework版本:4.5

实现代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#region 鼠标操作类型
private const int MOUSEEVENTF_MOVE = 1;//鼠标移动
 
private const int MOUSEEVENTF_LEFTDOWN = 2;//按下鼠标左键
 
private const int MOUSEEVENTF_LEFTUP = 4;//抬起鼠标左键
 
private const int MOUSEEVENTF_RIGHTDOWN = 8;//按下鼠标右键
 
private const int MOUSEEVENTF_RIGHTUP = 16;//抬起鼠标右键
 
#endregion
 
#region Windows Api
/// <summary>
/// 鼠标操作
/// </summary>
/// <param name="dwFlags"></param>
/// <param name="dx"></param>
/// <param name="dy"></param>
/// <param name="cButtons"></param>
/// <param name="dwExtraInfo"></param>
[DllImport("user32.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Auto)]
public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);
 
/// <summary>
/// 设置鼠标位置
/// </summary>
/// <param name="x"></param>
/// <param name="y"></param>
/// <returns></returns>
[DllImport("user32")]
public static extern int SetCursorPos(int x, int y);
 
/// <summary>
/// 注册热键
/// </summary>
/// <param name="hWnd"></param>
/// <param name="id"></param>
/// <param name="control"></param>
/// <param name="vk"></param>
/// <returns></returns>
[DllImport("user32")]
public static extern bool RegisterHotKey(IntPtr hWnd, int id, uint control, Keys vk);
 
/// <summary>
/// 取消热键
/// </summary>
/// <param name="hWnd"></param>
/// <param name="id"></param>
/// <returns></returns>
[DllImport("user32")]
public static extern bool UnregisterHotKey(IntPtr hWnd, int id);
 
#endregion
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
private List<EventClass> listEvent = new List<EventClass>();
/// <summary>
  /// 注册/取消热键
  /// </summary>
  /// <param name="isReg"></param>
  private void RegistKey(bool isReg)
  {
      if (isReg)
      {
          RegisterHotKey(base.Handle, 30001, MOD_CONTROL, Keys.D1);
          RegisterHotKey(base.Handle, 30002, MOD_CONTROL, Keys.D2);
          RegisterHotKey(base.Handle, 30003, MOD_CONTROL, Keys.D3);
          RegisterHotKey(base.Handle, 30004, MOD_CONTROL, Keys.D4);
          RegisterHotKey(base.Handle, 30005, MOD_CONTROL, Keys.E);
      }
      else
      {
          UnregisterHotKey(base.Handle, 30001);
          UnregisterHotKey(base.Handle, 30002);
          UnregisterHotKey(base.Handle, 30003);
          UnregisterHotKey(base.Handle, 30004);
          UnregisterHotKey(base.Handle, 30005);
      }
  }
  
  //执行点击事件
  private void MouseClick(EventClass eventData)
  {
      SetCursorPos(eventData.X, eventData.Y);
      switch (eventData.clickType)
      {
          case ClickType.leftClick:
              mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
              mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
              break;
          case ClickType.rightClick:
              mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0);
              mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0);
              break;
          case ClickType.doubleClick:
              mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
              mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
              Thread.Sleep(100);
              mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
              mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
              break;
      }
  }
  
  //执行设置文本事件
  private void SetText(EventClass eventData)
  {
      SendKeys.SendWait(eventData.Text);
  }
  
/// <summary>
  /// 录制
  /// </summary>
  /// <param name="sender"></param>
  /// <param name="e"></param>
  private void btnRecord_Click(object sender, EventArgs e)
  {
      CancelTask = new CancellationTokenSource();
      RegistKey(true);
      EnableControl(false);
      AddLog("正在录制...");
      KeyPress += new KeyPressEventHandler(Click_KeyPress);
  }
  
  /// <summary>
  /// 执行
  /// </summary>
  /// <param name="sender"></param>
  /// <param name="e"></param>
  private void btnRun_Click(object sender, EventArgs e)
  {
      int interval = string.IsNullOrEmpty(txtInterval.Text) ? 0 : Convert.ToInt32(txtInterval.Text);
  
      int count = string.IsNullOrEmpty(txtCount.Text) ? 1 : Convert.ToInt32(txtCount.Text);
  
      Task.Factory.StartNew(() =>
      {
          for (int i = 0; i < count; i++)
          {
              foreach (EventClass current in listEvent)
              {
                  if (current.clickType == ClickType.SendKeys)
                  {
                      SetText(current);
                  }
                  else
                  {
                      MouseClick(current);
                  }
                   
                  Thread.Sleep(interval * 1000);
              }
              
              AddLog("第" + (i + 1) + "次执行结束");
  
              try
              {
                  CancelTask.Token.ThrowIfCancellationRequested();
              }
              catch (System.OperationCanceledException ex)
              {
                  AddLog("已手动结束执行");
                  return;
              }
          }
          AddLog("自动执行结束...");
          KeyPress += new KeyPressEventHandler(Click_KeyPress);
      }, CancelTask.Token);
  }
  
  private void Click_KeyPress(object sender, KeyPressEventArgs e)
   {
       string logStr = string.Empty;
       ClickType clickType = ClickType.leftClick;
       string key = e.KeyChar.ToString().ToUpper();
       switch (key)
       {
           case "1":
               clickType = ClickType.leftClick;
               logStr = "点击了鼠标左键";
               break;
           case "2":
               clickType = ClickType.rightClick;
               logStr = "点击了鼠标右键";
               break;
           case "3":
               clickType = ClickType.doubleClick;
               logStr = "双击了鼠标左键";
               break;
           case "4":
               clickType = ClickType.SendKeys;
               logStr = "发送了文本:" + txtValue.Text;
               break;
           default:
               logStr = "按下了" + e.KeyChar + "键,无效!";
               break;
       }
  
       int x = Cursor.Position.X;
       int y = Cursor.Position.Y;
       AddLog("在 (" + x + "," + y + ") 位置," + logStr);
  
       EventClass eventClass = new EventClass();
       eventClass.clickType = clickType;
       eventClass.X = x;
       eventClass.Y = y;
       if (!string.IsNullOrEmpty(txtValue.Text))
       {
           eventClass.Text = txtValue.Text;
       }
       listEvent.Add(eventClass);
   }
 

实现效果

到此这篇关于C#模拟实现鼠标自动点击与消息发送功能的文章就介绍到这了

 

转自https://www.jb51.net/article/260239.htm
posted @   CastleWu  阅读(1171)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· C#/.NET/.NET Core技术前沿周刊 | 第 29 期(2025年3.1-3.9)
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
点击右上角即可分享
微信分享提示