在当前打开的应用程序的顶部显示隐藏的窗体

时间:2012-09-09 16:36:24

标签: c# winforms forms show-hide

我想将窗体显示为弹出窗口,该窗口显示在所有打开的其他应用程序窗口的顶部 我使用了Focus方法,但它没有用。 所以我试过了:

using System.Diagnostics;
using System.Runtime.InteropServices;

// Sets the window to be foreground
[DllImport("User32")]
private static extern int SetForegroundWindow(IntPtr hwnd);

// Activate or minimize a window
[DllImportAttribute("User32.DLL")]
private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
private const int SW_SHOW = 5;
private const int SW_MINIMIZE = 6;
private const int SW_RESTORE = 9;

private void ActivateApplication(string briefAppName)
{
    Process[] procList = Process.GetProcessesByName(briefAppName);

    if (procList.Length > 0)
    {
        ShowWindow(procList[0].MainWindowHandle, SW_RESTORE);
        SetForegroundWindow(procList[0].MainWindowHandle);
    }
}

如前一个关于SO Here的问题所述 但我无法使用它。 正确的答案海报说“Basically, call ShowWindow() then SetForegroundWindow().”,但我不知道这些方法的参数是什么

我究竟应该传递给ShowWindow();和SetForegroundWindow();方法?? 有什么帮助吗?

1 个答案:

答案 0 :(得分:2)

这是我的解决方案:

private void ActivateApplication (string briefAppName) 
    {
        Process[] p=Process.GetProcessesByName (briefAppName);
        if (p.Length>0)
        {
            this.TopMost=true;
            ShowWindow (p[0].MainWindowHandle, 9);
            this.TopMost=false;
            this.Activate ();
        }
    }

使用.Activate()聚焦表单,使用TopMost更改表单的Always-on-top状态。

9表示Resotre窗口。如果您的窗口已经恢复,ShowWindow函数将不执行任何操作。在这里查看ShowWindow函数的文档:http://msdn.microsoft.com/en-us/library/windows/desktop/ms633548%28v=vs.85%29.aspx