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.         ///    
  20.         /// 设置鼠标的坐标   
  21.         ///    
  22.         /// 横坐标   
  23.         /// 纵坐标   
  24.         [DllImport("User32")]  
  25.         public extern static void SetCursorPos(int x, int y);  
  26.   
  27.         ///    
  28.         /// 获取鼠标的坐标   
  29.         ///    
  30.         /// 传址参数,坐标point类型   
  31.         /// 获取成功返回真   
  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. }  

 

 

你可能感兴趣的:(c#,textbox,api,user,windows,.net)