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
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.