码迷,mamicode.com
首页 > 移动开发 > 详细

C#控制鼠标移动

时间:2015-02-03 12:44:30      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

1。找到元素坐标;
HtmlElement OffsetRectangle.X,Y属性可以知道坐标
2。C#控制鼠标移动
通过SetCursorPos(x,y)可以控制鼠标坐标

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;namespace WindowsApplication10
{
public partial class Form1 : Form
{
[DllImport("user32.dll")]
private static extern int SetCursorPos(int x, int y);
public Form1()
{
InitializeComponent();
}
int i = 0;
private void Form1_Load(object sender, EventArgs e)
{
timer1.Interval = 10000;
}
private void timer1_Tick(object sender, EventArgs e)
{
i = i + 3;
SetCursorPos(i, i);
}
}
}

C#控制鼠标移动

标签:

原文地址:http://www.cnblogs.com/wolly88/p/4269533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!