Is there a way to get access over other processes (for example Windows Calculator) and retrieve information that can help perform GUI operations (emulate 1 + 1 = ... operations)? What API should be used? Are there any solutions for C#?
问问题
106 次
1 回答
1
您必须使用Spy+工具,该工具可用于 Visual Studio 设置。这是调查本机Windows 应用程序的必备工具。
它的主要属性是:
- 获取任意窗口的属性
- 嗅探
WM_...
消息应用程序,能够过滤它们并查看主要参数(LPARAM,WPARAM)值。
于 2013-07-17T21:22:20.693 回答