6

当应用程序的 main Form(传递给的那个Application.Run())具有

this.ShowInTaskBar = false;

Process然后,表示该应用程序的实例具有MainWindowHandleof 0,表示Process.CloseMainWindow()不起作用。

我怎样才能解决这个问题?我需要干净地关闭Form通过Process实例。

4

1 回答 1

2

我找到了一种替代方法,即退回到 Win32 的内容并使用窗口标题。这很乱,但它适用于我的情况。

该示例具有一个应用程序实例的上下文菜单,该菜单关闭该应用程序的所有实例。

[DllImport("user32.dll")]
public static extern int EnumWindows(EnumWindowsCallback x, int y);
public delegate bool EnumWindowsCallback(int hwnd, int lParam);
[DllImport("user32.dll")]
public static extern void GetWindowText(int h, StringBuilder s, int nMaxCount);
[DllImport("user32.dll")]
public static extern IntPtr PostMessage(IntPtr hWnd, int msg, int wParam, int lParam);
private void ContextMenu_Quit_All(object sender, EventArgs ea)
{
    EnumWindowsCallback itemHandler = (hwnd, lParam) =>
    {
        StringBuilder sb = new StringBuilder(1024);
        GetWindowText(hwnd, sb, sb.Capacity);

        if ((sb.ToString() == MainWindow.APP_WINDOW_TITLE) &&
            (hwnd != mainWindow.Handle.ToInt32())) // Don't close self yet
        {
            PostMessage(new IntPtr(hwnd), /*WM_CLOSE*/0x0010, 0, 0);
        }

        // Continue enumerating windows. There may be more instances to close.
        return true;
    };

    EnumWindows(itemHandler, 0);
    // Close self ..
}
于 2009-06-18T09:22:42.763 回答