C#获取和设置鼠标的座标

该示例实现了控制鼠标的座标,分别用WIndows Api和.Net库自带的命令实现。

 APi控制和获取鼠标分别是:   GetCursorPos和SetCursorPost。

下面是截图:

 

using System;  

  1. using System.Collections.Generic;  
  2. using System.ComponentModel;  
  3. using System.Data;  
  4. using System.Drawing;  
  5. using System.Linq;  
  6. using System.Text;  
  7. using System.Windows.Forms;  
  8. using System.Runtime.InteropServices;//   
  9.   
  10. namespace 获取和设置鼠标的座标  
  11. {  
  12.     public partial class Form1 : Form  
  13.     {  
  14.         public Form1()  
  15.         {  
  16.             InitializeComponent();  
  17.         }  
  18.   
  19.         /// <summary>   
  20.         /// 设置鼠标的座标   
  21.         /// </summary>   
  22.         /// <param name="x">横座标</param>   
  23.         /// <param name="y">纵座标</param>   
  24.         [DllImport("User32")]  
  25.         public extern static void SetCursorPos(int x, int y);  
  26.   
  27.         /// <summary>   
  28.         /// 获取鼠标的座标   
  29.         /// </summary>   
  30.         /// <param name="lpPoint">传址参数,座标point类型</param>   
  31.         /// <returns>获取成功返回真</returns>   
  32.         [DllImport("User32")]  
  33.         public extern static bool GetCursorPos(ref Point lpPoint);  
  34.   
  35.   
  36.         private void button_go_Click(object sender, EventArgs e)  
  37.         {                    
  38.             SetCursorPos(int.Parse(textBox_x.Text), (int.Parse(textBox_y.Text)));              
  39.         }  
  40.   
  41.         Point p = new Point(1, 1);//定义存放获取座标的point变量   
  42.         private void timer1_Tick(object sender, EventArgs e)  
  43.         {  
  44.   
  45.             GetCursorPos(ref p);  
  46.             label_p.Text = "X:" + p.X + "\r\nY:" + p.Y;  
  47.             //label_p.Text = "X:" + Cursor.Position.X + "\r\nY:" + Cursor.Position.Y; //用C#自带命令获取   
  48.         }  
  49.     }  
  50. }  

 

 

发布了9 篇原创文章 · 获赞 4 · 访问量 11万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章