博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GetCursorPos
阅读量:5055 次
发布时间:2019-06-12

本文共 856 字,大约阅读时间需要 2 分钟。

300447-20170122155827535-838648499.png
 
获取桌面坐标
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        #region
     
        [DllImport("user32.dll", CharSet = CharSet.Auto)]
        public static extern bool GetCursorPos(out POINT pt);
        [StructLayout(LayoutKind.Sequential)]
        public struct POINT
        {
            public int X;
            public int Y;
            public POINT(int x, int y)
            {
                this.X = x;
                this.Y = y;
            }
        }
        #endregion
        private void timer1_Tick(object sender, EventArgs e)
        {
            POINT pt = new POINT();
            GetCursorPos(out pt);
            textBox1.Text = string.Format("{0},{1}", pt.X,pt.Y);
        }
    }
}

附件列表

 

转载于:https://www.cnblogs.com/xe2011/p/6094532.html

你可能感兴趣的文章
获取和设置cookie的方法(5种)
查看>>
一步步学习微软InfoPath2010和SP2010--第七章节--从SP列表和业务数据连接接收数据(4)--外部项目选取器和业务数据连接...
查看>>
如何增强你的SharePoint 团队网站首页
查看>>
FZU 1914 Funny Positive Sequence(线性算法)
查看>>
oracle 报错ORA-12514: TNS:listener does not currently know of service requested in connec
查看>>
基于grunt构建的前端集成开发环境
查看>>
MySQL服务读取参数文件my.cnf的规律研究探索
查看>>
java string(转)
查看>>
__all__有趣的属性
查看>>
BZOJ 5180 [Baltic2016]Cities(斯坦纳树)
查看>>
写博客
查看>>
利用循环播放dataurl的视频来防止锁屏:NoSleep.js
查看>>
品味第一杯瓜哇咖啡
查看>>
第十四周总结Access
查看>>
Java开发笔记(一百零二)信号量的请求与释放
查看>>
gridview DataFormatString 属性设置须知
查看>>
springboot项目部署Linux(十一)
查看>>
出差(七)学习
查看>>
python3 生成器与迭代器
查看>>
C++primer 13.2.2节练习
查看>>