Capturing user events (button clicks etc) from ano

2020-02-13 04:59发布

I'm looking to write a .Net Windows application that will capture how a user uses another running application.

The simplest form of this would be recording which buttons were clicked or menu items were opened. Capturing the button text or menu text would be enough.

I know this can be done by listening for events but was unsure how far this stretched. In Windows are you able to listen to another applications events or are they hidden from other applications?

If so, are there any .Net libraries I can use or open source projects to catch these events? Taking this further, turn these into generic events (im thinking lots of applications might fire events specific to them, so extracting general information is key)

If not, is the only solution to integrate my code with the application to gain access to the that applications events?

Many thanks

2条回答
Deceive 欺骗
2楼-- · 2020-02-13 05:12
private void CaptureCameraCallback()

{

    using (CvCapture cap = CvCapture.FromCamera(CaptureDevice.Any, 1))

    {

        while (true)

        {

            Bitmap bm = BitmapConverter.ToBitmap(cap.QueryFrame());

            bm.SetResolution(pctCvWindow.Width, pctCvWindow.Height);

            pctCvWindow.Image = bm;

        }

    }

}
查看更多
▲ chillily
3楼-- · 2020-02-13 05:25

If I understand your post correctly, you need something similar to Spy++ that can hook the Windows messages and tell you when that message gets fired.

Have a look at these links:

  1. Deliver The Power Of Spy++ To Windows Forms
  2. Spying Window Messages from the Inside
  3. How can I get functionality similar to Spy++ in my C# app?
查看更多
登录 后发表回答