C#开发winform&wpf后台捕获鼠标移动事件

做 WPF和winform的时候,可以在界面上设置鼠标移动事件来检测鼠标移动,如果项目为后期改造这样做的话改动量很大,今天通过另外一种后台调用windows api的方式进行快速捕获和触发,提高开发效率分享给大家。

csharp 复制代码
  /// <summary>
    /// 鼠标移动帮助类
    /// </summary>
    public class MouseMoveHelper:IDisposable
    {
        public MouseMoveHelper()
        {

        }

        public void Dispose()
        {
            try
            {
                if (mousePositionTimer != null)
                {
                    mousePositionTimer.Stop();
                    deactivatedTimer.Stop();
                    mousePositionTimer = null;
                    deactivatedTimer = null;
                }
            }
            catch (Exception ex)
            {

            }
        }

        public Action<NoOperationEvent> OK;


        #region 监测是否有用户操作

        private DispatcherTimer mousePositionTimer;    //长时间不操作该程序退回到登录界面的计时器
        private Point mousePosition;    //鼠标的位置
        private int checkCount = 0;   //检测鼠标位置的次数

        private DispatcherTimer deactivatedTimer;   //当焦点不在此程序上时计时器


        public void Start()
        {
            mousePosition = GetMousePoint();  //获取鼠标坐标

            if (mousePositionTimer==null)
            {
                mousePositionTimer = new DispatcherTimer();
                mousePositionTimer.Tick += new EventHandler(MousePositionTimedEvent);
                mousePositionTimer.Interval = new TimeSpan(0, 0, 1);     //每隔10秒检测一次鼠标位置是否变动
            }
            mousePositionTimer.Start();
            if (deactivatedTimer == null)
            {
                deactivatedTimer = new DispatcherTimer();
                deactivatedTimer.Tick += new EventHandler(deactivatedTimer_Tick);
                deactivatedTimer.Interval = new TimeSpan(0, 0, 10);   //如果焦点不在此程序中时,过10s程序自动重启
            }
        }

        bool isMoved = true;
        // 倒计时延迟数
        int maxDelayCount = 1;

        private void MousePositionTimedEvent(object sender, EventArgs e)
        {
            
            if (!HaveUsedTo())
            {
                checkCount++;    //检测到鼠标没移动,checkCount + 1  
                if (checkCount == maxDelayCount)
                {
                    checkCount = 0;
                    //长时间无人操作
                    if (isMoved)
                    {
                        isMoved = false;
                        OK?.Invoke(new NoOperationEvent() { Message = "检测到无鼠标移动", CurrentMouseState = NoOperationEvent.MouseState.standstill });
                    }
                }
            }
            else
            {
                OK?.Invoke(new NoOperationEvent() { Message = "检测到鼠标移动", CurrentMouseState = NoOperationEvent.MouseState.move });
                checkCount = 0;     //检测到鼠标移动,重新计数
                isMoved=true;
            }
        }

        private void deactivatedTimer_Tick(object sender, EventArgs e)
        {
            deactivatedTimer.Stop();
            //长时间无人操作
            //Messenger.Default.Send<string>("focus", "DoFocus");
        }


        //判断鼠标是否移动
        private bool HaveUsedTo()
        {
            Point point = GetMousePoint();
            if (point == mousePosition)
            {
                return false;
            }
            mousePosition = point;
            return true;
        }


        [StructLayout(LayoutKind.Sequential)]
        private struct MPoint
        {
            public int X;
            public int Y;

            public MPoint(int x, int y)
            {
                this.X = x;
                this.Y = y;
            }
        }

        [DllImport("user32.dll", CharSet = CharSet.Auto)]
        private static extern bool GetCursorPos(out MPoint mpt);

        /// 获取当前屏幕鼠标位置   
        public Point GetMousePoint()
        {
            MPoint mpt = new MPoint();
            GetCursorPos(out mpt);
            Point p = new Point(mpt.X, mpt.Y);
            return p;
        }

        
        #endregion
    }

程序调用

csharp 复制代码
            var MouseMoveHelper = new MouseMoveHelper();
            MouseMoveHelper.OK = CheckMouseState;
             MouseMoveHelper.Start();

一般在顶级父类里面初始化的时候进行处理即可

相关推荐
weixin_307779131 小时前
使用C#实现从Hive的CREATE TABLE语句中提取分区字段名和数据类型
开发语言·数据仓库·hive·c#
时光追逐者2 小时前
在 Blazor 中使用 Chart.js 快速创建数据可视化图表
开发语言·javascript·信息可视化·c#·.net·blazor
huizhixue-IT2 小时前
华为存储考试内容&HCIP-Storage
wpf
....4922 小时前
antvX6节点全选后鼠标通过拖拉调整视图的展示位置
javascript·计算机外设·数据中台·antvx6
与火星的孩子对话3 小时前
Unity3D开发AI桌面精灵/宠物系列 【三】 语音识别 ASR 技术、语音转文本多平台 - 支持科大讯飞、百度等 C# 开发
人工智能·unity·c#·游戏引擎·语音识别·宠物
response_L3 小时前
国产系统统信uos和麒麟v10在线打开word给表格赋值
java·c#·word·信创·在线编辑
MasterNeverDown3 小时前
Swagger2Md:让WebAPI文档生成变得轻松高效
c#
向宇it3 小时前
【零基础入门unity游戏开发——2D篇】2D 游戏场景地形编辑器——TileMap的使用介绍
开发语言·游戏·unity·c#·编辑器·游戏引擎
闪电麦坤9512 小时前
C#:base 关键字
开发语言·c#
mingupup13 小时前
C#连接小智服务器并将音频解码播放过程记录
c#