当我从c#调用GetForegroundWindow时,我获取了资源管理器父进程ID(我从进程资源管理器中看到了这一点),而不是前台应用程序的进程ID。
为什么这样以及如何获得正确的进程ID?
马尔科姆
答案 0 :(得分:5)
API函数GetForegroundWindow为您提供顶部窗口的句柄,而不是进程ID。 那么你用什么其他函数从GetForegroundWindow获得的窗口句柄中获取进程ID?
这将为您提供前景窗口的WINDOW HANDLE:
[DllImport("user32", SetLastError = true)]
public static extern int GetForegroundWindow();
这将获得给定WINDOW HANDLE的进程ID(taskmgr中的PID):
[DllImport("user32", SetLastError = true)]
public static extern int GetWindowThreadProcessId(int hwnd, ref int lProcessId);
public static int GetProcessThreadFromWindow(int hwnd) {
int procid = 0;
int threadid = GetWindowThreadProcessId(hwnd, ref procid);
return procid;
}
如果你回答了你的问题,那就太好了,所以它在这个论坛上有一些价值。
答案 1 :(得分:0)
不确定这里发生了什么,但您是否尝试过以管理员身份运行应用?现在有很多关于非管理员应用程序能够在系统其余部分中看到的限制。