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();

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

相关推荐
充值内卷44 分钟前
WPF入门教学四 WPF控件概述
windows·ui·wpf
指尖流烟1 小时前
C#调用图表的使用方法
开发语言·c#
friklogff3 小时前
【无标题】云端之C#:全面解析6种云服务提供商的SDK
开发语言·flask·c#
pink大呲花4 小时前
css鼠标常用样式
前端·css·计算机外设
c#上位机4 小时前
C#事件的用法
java·javascript·c#
chnyi6_ya4 小时前
一些写leetcode的笔记
笔记·leetcode·c#
IT规划师4 小时前
C#|.net core 基础 - 扩展数组添加删除性能最好的方法
c#·.netcore·数组
时光追逐者5 小时前
分享6个.NET开源的AI和LLM相关项目框架
人工智能·microsoft·ai·c#·.net·.netcore
friklogff5 小时前
【C#生态园】提升C#开发效率:深入了解自然语言处理库与工具
开发语言·c#·区块链
李小白杂货铺10 小时前
显示器最佳分辨率设置
计算机外设·显示器·内置显示器·独立显示器·最佳分辨率