16

这是我的代码:

            using (Process game = Process.Start(new ProcessStartInfo() { 
        FileName="DatabaseCheck.exe",
        RedirectStandardOutput = true,
        CreateNoWindow = true,
        UseShellExecute = false }))
        {
            lblLoad.Text = "Loading";
            int Switch = 0;

            while (game.MainWindowHandle == IntPtr.Zero)
            {
                Switch++;
                if (Switch % 1000 == 0)
                {
                    lblLoad.Text += ".";
                    if (lblLoad.Text.Contains("...."))
                        lblLoad.Text = "Loading.";

                    lblLoad.Update();
                    game.Refresh();
                }
            }

问题是,game.MainWindowHandle 总是 IntPtr.Zero。我需要找到运行过程的IntPtr来确认游戏是由启动器启动的,所以我让游戏发送它是IntPtr,如果没问题让启动器响应。但为此,我必须具体了解运行进程的 IntPtr。

提前致谢!

4

3 回答 3

16

主窗口是当前具有焦点的进程打开的窗口(TopLevel 窗体)。您必须使用该Refresh方法刷新 Process 对象以获取当前主窗口句柄(如果它已更改)。

您只能获取MainWindowHandle在本地计算机上运行的进程的属性。MainWindowHandle 属性是唯一标识与进程关联的窗口的值。

仅当进程具有图形界面时,该进程才具有与其关联的主窗口。如果关联进程没有主窗口,则 MainWindowHandle 值为零。对于已隐藏的进程,即在任务栏中不可见的进程,该值也为零。这可能是在任务栏最右侧的通知区域中显示为图标的进程。

如果您刚刚启动一个进程并想使用它的主窗口句柄,请考虑使用 WaitForInputIdle 方法让进程完成启动,确保已创建主窗口句柄。否则会抛出异常。

于 2013-04-24T07:20:29.763 回答
6
while (!proc.HasExited)
{
    proc.Refresh();
    if (proc.MainWindowHandle.ToInt32() != 0)
    {
        return proc.MainWindowHandle;
    }
}
于 2013-09-27T07:46:48.710 回答
6

一种解决方法是枚举所有顶级窗口并检查它们的进程ID,直到找到匹配项...


    [DllImport("user32.dll")]
    public static extern IntPtr FindWindowEx(IntPtr parentWindow, IntPtr previousChildWindow, string windowClass, string windowTitle);

    [DllImport("user32.dll")]
    private static extern IntPtr GetWindowThreadProcessId(IntPtr window, out int process);

    private IntPtr[] GetProcessWindows(int process) {
        IntPtr[] apRet = (new IntPtr[256]);
        int iCount = 0;
        IntPtr pLast = IntPtr.Zero;
        do {
            pLast = FindWindowEx(IntPtr.Zero, pLast, null, null);
            int iProcess_;
            GetWindowThreadProcessId(pLast, out iProcess_);
            if(iProcess_ == process) apRet[iCount++] = pLast;
        } while(pLast != IntPtr.Zero);
        System.Array.Resize(ref apRet, iCount);
        return apRet;
    }
于 2014-08-06T04:01:46.833 回答