6

アプリケーションのメインForm(渡されたものApplication.Run())が

this.ShowInTaskBar = false;

Process次に、そのアプリケーションを表すインスタンスには、があります。これMainWindowHandleは、機能しない0ことを意味します。Process.CloseMainWindow()

どうすればこれを回避できますか?Formインスタンスを介してviaをクリーンに閉じる必要がありProcessます。

4

1 に答える 1

2

Win32に戻ってウィンドウのタイトルを使用することで、別の方法を見つけました。面倒ですが、私の状況ではうまくいきます。

この例には、1つのアプリケーションインスタンスのコンテキストメニューがあり、そのアプリケーションのすべてのインスタンスを閉じています。

[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 に答える