WIndows Api和.Net库实现控制鼠标的坐标

来源:互联网 发布:centos 安装mrtg 编辑:程序博客网 时间:2024/06/03 19:18

该示例实现了控制鼠标的坐标,分别用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. }  

 http://www.cnblogs.com/stg609/archive/2008/03/16/1108333.html

 

        protected override void WndProc(ref Message m)
        {
            const int WM_SYSCOMMAND = 0x0112;
            const int SC_CLOSE = 0xF060;
            if((m.Msg == WM_SYSCOMMAND) && ((int)m.WParam == SC_CLOSE))
            {
                return;
            }
            base.WndProc(ref m);
        }