C#如果控制鼠标指针在指定的坐标下执行单击

要代码哦,(C#或java都行)... 要代码哦,(C#或java都行) 展开
 我来答
202261256487e6a
2008-11-22 · TA获得超过481个赞
知道小有建树答主
回答量:795
采纳率:0%
帮助的人:688万
展开全部
using System;
using System.Collections.Generic;
using System.Text;

namespace MouseEvent
{
class Program
{
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern int mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);
const int MOUSEEVENTF_MOVE = 0x0001;
const int MOUSEEVENTF_LEFTDOWN = 0x0002;
const int MOUSEEVENTF_LEFTUP = 0x0004;
const int MOUSEEVENTF_RIGHTDOWN = 0x0008;
const int MOUSEEVENTF_RIGHTUP = 0x0010;
const int MOUSEEVENTF_MIDDLEDOWN = 0x0020;
const int MOUSEEVENTF_MIDDLEUP = 0x0040;
const int MOUSEEVENTF_ABSOLUTE = 0x8000;
static void Main(string[] args)
{
for (int i = 0; i < 5; i++)
{
System.Threading.Thread.Sleep(1000);
//鼠标移动,坐标x,坐标y,只设置前三个参数就够了
mouse_event(MOUSEEVENTF_MOVE, 10, 0, 0, 0);
//鼠标左键点击
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);

}
}
}
}
飞奔的大鸽子
2013-11-25 · TA获得超过399个赞
知道答主
回答量:110
采纳率:0%
帮助的人:91.9万
展开全部
tem.Collections.Generic;
using System.Text;
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式