zoukankan      html  css  js  c++  java
  • 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();
     
  • 相关阅读:
    Statistics Report for pid 21058 on 1wt.eu
    Wget下载终极用法和15个详细的例子
    Importing fabric into your own scripts
    Introduction to Build Profiles
    SSH Programming with Paramiko | Completely Different
    maven repository research webpage
    geek cn tech
    Nginx + Tomcat + Session学习 ﹎敏ō 博客园
    MonoRail 简介
    Linux 中出现的bash: syntax error near unexpected token `
  • 原文地址:https://www.cnblogs.com/Fred1987/p/12197851.html
Copyright © 2011-2022 走看看