Intercepting click event for all controls in an app in C# (WinForms)

前端 未结 4 796
不思量自难忘°
不思量自难忘° 2021-01-02 23:01

I want to make an application to intercept all UI events in all the forms of my application and to write them to a log. This data can than be used to see which controls are

相关标签:
4条回答
  • 2021-01-02 23:10

    You will have to work with the Win32's API Messages, I guess.

    Here's a little example under the form of tutorial.

    0 讨论(0)
  • 2021-01-02 23:13

    You should be able to achieve what you want with message filters - no direct P/Invoke to Win32-APIs required!

    See the help on the IMessageFilter interface for more info.

    0 讨论(0)
  • 2021-01-02 23:27

    In Windows API this is done using local hooks (you can set local mouse hook using SetWindowsHookEx function). This is the proper way to do your task. In C# you need to use P/Invoke in order to get access to SetWindowsHookEx.

    One more task would be to match the HWND (windows handle) to corresponding WinForms control. Read this article for how to do this (via WM_GETCONTROLNAME message).

    Also see this question which is a duplicate of yours.

    0 讨论(0)
  • 2021-01-02 23:35

    You can install a message filter.

    A message filter is an object that implements IMessageFilter. WinForms calls your PreFilterMessage method for every message that passes through your thread's message loop. This is enough to monitor user input across the application (and gives you the option of manipulating it).

    0 讨论(0)
提交回复
热议问题