如何知道某个进程是否在桌面应用程序的windows ce设备上运行

时间:2012-05-04 00:39:07

标签: c# windows windows-ce rapi

我想知道某个进程是否在桌面应用程序的Windows Ce设备上运行抛出RAPI

2 个答案:

答案 0 :(得分:2)

RAPi本身并不具备任何流程管理/工具帮助功能,所以开箱即用,您无法做到这一点。我的建议是创建一个自定义的RAPI DLL(example here - 不幸的是,这必须在C中完成,但它非常简单),或者只是通过toolhelp或更通用的版本检查你的进程它允许您枚举正在运行的进程,然后使用CeRapiInvoke来调用该DLL。

共享源OpenNETCF Desktop Communication库有一个这个函数的包装器。

答案 1 :(得分:1)

我找到了一个不同的解决方案,似乎它正在发挥作用。这个想法是让应用程序的窗口运行,并搜索应用程序的标题,我认为它不太灵活,但现在可以,或许以后我会改变它为CeRapiInvoke解决方案。 终于搞定了这个

    [DllImport("rapi.dll", SetLastError = true)]
    internal static extern IntPtr CeGetWindow(IntPtr hWnd, GetWindow_Cmd uCmd);

    [DllImport("rapi.dll", CharSet = CharSet.Unicode, SetLastError = true)]
    internal static extern int CeGetWindowText(IntPtr hWnd, StringBuilder name, int nMaxCount);

    public enum GetWindow_Cmd : uint
    {
        GW_HWNDFIRST = 0,
        GW_HWNDLAST = 1,
        GW_HWNDNEXT = 2,
        GW_HWNDPREV = 3,
        GW_OWNER = 4,
        GW_CHILD = 5,
        GW_ENABLEDPOPUP = 6
    }


    public bool TaskIsRunning(string windowName)
    {
        IntPtr ptr = CeGetWindow(IntPtr.Zero, GetWindow_Cmd.GW_CHILD);
        ptr = CeGetWindow(ptr, GetWindow_Cmd.GW_HWNDLAST);

        while (ptr != IntPtr.Zero)
        {
            StringBuilder sb = new StringBuilder(255);
            //string lala = new string(' ', 255);
            //lala = null;
            int a = CeGetWindowText(ptr, sb, 255);
            System.Diagnostics.Debug.WriteLine(a + " " + sb.ToString());
            if (sb.ToString() == windowName)
                return true;
            ptr = CeGetWindow(ptr, GetWindow_Cmd.GW_HWNDPREV);
        }

        return false;
    }

希望这有助于其他人