VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > c#编程 >
  • C# monitor keyboard and mouse actions based on MouseKeyHook.

Below is applicable for ConsoleApplication

1.Install-package MouseKeyHook

2.

复制代码
using Gma.System.MouseKeyHook;
using System; 

namespace ConsoleApp1
{
    public class MonitorHelper
    {
        public static void ListenForMouseEvents()
        {
            Hook.GlobalEvents().MouseClick += (sender, e) =>
            {
                Console.WriteLine($"{DateTime.Now.ToString("yyyyMMddHHmmssffff")} Mouse {e.Button} clicked.");
            };

            Hook.GlobalEvents().MouseDoubleClick += (sender, e) =>
           {
               Console.WriteLine($"{DateTime.Now.ToString("yyyyMMddHHmmssffff")} Mouse {e.Button} button double clicked.");
           };

            Hook.GlobalEvents().MouseDragFinished += (sender, e) =>
            {
                Console.WriteLine($"{DateTime.Now.ToString("yyyyMMddHHmmssffff")} Mouse {e.Button} dragged");
            };

            Hook.GlobalEvents().MouseWheel += (sender, e) =>
            {
                Console.WriteLine($"{DateTime.Now.ToString("yyyyMMddHHmmssffff")} Mouse scrolls");
            };

            Hook.GlobalEvents().KeyDown += (sender, e) =>
            {
                Console.WriteLine($"{DateTime.Now.ToString("yyyyMMddHHmmssffff")} pressed {e.KeyCode}");
            };
        }
    }
}
复制代码

3.

复制代码
static void Main(string[] args)
        {
            MouseMonitor();
            Console.ReadLine();
        }

        static void MouseMonitor()
        {
            MonitorHelper.ListenForMouseEvents();
            Application.Run(new ApplicationContext());
        }
复制代码

 

 

While in desktop application,such as WindowsForm.Please ignore above part and reference below.

复制代码
 public class MonitorHelper
    {
        public static int ClickCount { get; set; } = 0;
        public static int DoubleClickCount { get; set; } = 0;
        public static int WheelCount { get; set; } = 0;
        public static int MoveCount { get; set; } = 0;
        public static int PressCount { get; set; } = 0;
        private static IKeyboardMouseEvents kmEvents;
        public static void ListenForMouseEvents()
        {
            kmEvents = Hook.GlobalEvents();
            kmEvents.MouseClick += MonitorHelperMouseClick;           
            kmEvents.MouseDoubleClick += MonitorHelperMouseDoubleClick;
            kmEvents.MouseDragFinished += MonitorHelperMouseDragFinished;
            kmEvents.MouseWheel += MonitorHelperMouseWheel;
            kmEvents.KeyDown += MonitorHelperKeyDown;            
        }

        private static void MonitorHelperKeyDown(object sender, KeyEventArgs e)
        {
            PressCount++;
        }

        private static void MonitorHelperMouseWheel(object sender, MouseEventArgs e)
        {
            WheelCount++;
        }

        private static void MonitorHelperMouseDragFinished(object sender, MouseEventArgs e)
        {
            MoveCount++;
        }

        private static void MonitorHelperMouseDoubleClick(object sender, MouseEventArgs e)
        {
            DoubleClickCount++;
        }

        private static void MonitorHelperMouseClick(object sender, MouseEventArgs e)
        {
            ClickCount++;
        }

        public static void MouseMonitor()
        {
            MonitorHelper.ListenForMouseEvents(); 
        }
    }
复制代码

 

 

There is a big problem in Windows Form when use the first part.It will report exception and bug like below.

  **CallbackOnCollectedDelegate was detected**

A callback was made on a garbage collected delegate of type 'Browser!Utilities.globalKeyboardHook+keyboardHookProc::Invoke'. This may cause application crashes, corruption and data loss. When passing delegates to unmanaged code, they must be kept alive by the managed application until it is guaranteed that they will never be called.

So we need to declare a new  variable and assign values to it.Then register events based on the new variable instead of the Hook.GlobalEvents.

 
private static IKeyboardMouseEvents kmEvents; 
kmEvents = Hook.GlobalEvents();

相关教程