Process.CloseMainWindow メソッド

定義

メイン ウィンドウにクローズ メッセージを送信して、ユーザー インターフェイスがあるプロセスを終了します。

public:
 bool CloseMainWindow();
public bool CloseMainWindow ();
member this.CloseMainWindow : unit -> bool
Public Function CloseMainWindow () As Boolean

戻り値

クローズ メッセージが正常に送信された場合は true。関連付けられたプロセスにメイン ウィンドウがない場合、またはメイン ウィンドウが使用できない場合 (モーダル ダイアログ ボックスが表示されているときなど) は false

例外

プロセスは既に終了しています。

または

この Process オブジェクトに関連付けられているプロセスはありません。

次の例では、メモ帳のインスタンスを開始します。 次に、関連付けられたプロセスの物理メモリ使用量を 2 秒間隔で最大 10 秒間取得します。 この例では、10 秒が経過する前にプロセスが終了するかどうかを検出します。 この例では、10 秒後も実行されている場合は、プロセスを閉じます。

#using <System.dll>

using namespace System;
using namespace System::Diagnostics;
using namespace System::Threading;
int main()
{
   try
   {
      Process^ myProcess;
      myProcess = Process::Start(  "Notepad.exe" );
      
      // Display physical memory usage 5 times at intervals of 2 seconds.
      for ( int i = 0; i < 5; i++ )
      {
         if (  !myProcess->HasExited )
         {
            
            // Discard cached information about the process.
            myProcess->Refresh();
            
            // Print working set to console.
            Console::WriteLine( "Physical Memory Usage : {0}", myProcess->WorkingSet.ToString() );
            
            // Wait 2 seconds.
            Thread::Sleep( 2000 );
         }
         else
         {
            break;
         }

      }
      myProcess->CloseMainWindow();
      
      // Free resources associated with process.
      myProcess->Close();
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "The following exception was raised: " );
      Console::WriteLine( e->Message );
   }

}
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Threading;

namespace ProcessSample
{
    class MyProcessClass
    {
        public static void Main()
        {
            try
            {
                using (Process myProcess = Process.Start("Notepad.exe"))
                {
                    // Display physical memory usage 5 times at intervals of 2 seconds.
                    for (int i = 0; i < 5; i++)
                    {
                        if (!myProcess.HasExited)
                        {
                            // Discard cached information about the process.
                            myProcess.Refresh();
                            // Print working set to console.
                            Console.WriteLine($"Physical Memory Usage: {myProcess.WorkingSet}");
                            // Wait 2 seconds.
                            Thread.Sleep(2000);
                        }
                        else
                        {
                            break;
                        }
                    }

                    // Close process by sending a close message to its main window.
                    myProcess.CloseMainWindow();
                    // Free resources associated with process.
                    myProcess.Close();
                }
            }
            catch (Exception e) when (e is Win32Exception || e is FileNotFoundException)
            {
                Console.WriteLine("The following exception was raised: ");
                Console.WriteLine(e.Message);
            }
        }
    }
}
Imports System.ComponentModel
Imports System.Diagnostics
Imports System.IO
Imports System.Threading

Namespace Process_Sample
    Class MyProcessClass

        Public Shared Sub Main()
            Try
                Using myProcess = Process.Start("Notepad.exe")
                    ' Display physical memory usage 5 times at intervals of 2 seconds.
                    Dim i As Integer
                    For i = 0 To 4
                        If Not myProcess.HasExited Then

                            ' Discard cached information about the process.
                            myProcess.Refresh()
                            ' Print working set to console.
                            Console.WriteLine($"Physical Memory Usage: {myProcess.WorkingSet}")
                            ' Wait 2 seconds.
                            Thread.Sleep(2000)
                        Else
                            Exit For
                        End If

                    Next i

                    ' Close process by sending a close message to its main window.
                    myProcess.CloseMainWindow()
                    ' Free resources associated with process.
                    myProcess.Close()
                End Using
            Catch e As Exception When TypeOf e Is Win32Exception Or TypeOf e Is FileNotFoundException
                Console.WriteLine("The following exception was raised: ")
                Console.WriteLine(e.Message)
            End Try
        End Sub
    End Class
End Namespace 'Process_Sample

注釈

プロセスが実行されている場合、そのメッセージ ループは待機状態になります。 メッセージ ループは、オペレーティング システムによって Windows メッセージがプロセスに送信されるたびに実行されます。 を呼び出すとCloseMainWindow、メイン ウィンドウを閉じる要求が送信されます。このウィンドウは、適切な形式のアプリケーションで子ウィンドウを閉じ、アプリケーションの実行中のすべてのメッセージ ループを取り消します。 を呼び出 CloseMainWindow してプロセスを終了する要求では、アプリケーションが強制的に終了することはありません。 アプリケーションは、終了する前にユーザーの確認を求めることも、終了を拒否することもできます。 アプリケーションを強制的に終了するには、 メソッドを使用します Kill 。 のCloseMainWindow動作は、システム メニューを使用してアプリケーションのメイン ウィンドウを閉じるユーザーの動作と同じです。 したがって、メイン ウィンドウを閉じてプロセスを終了する要求は、アプリケーションをすぐに終了させるわけではありません。

を呼び出 Killすと、プロセスによって編集されたデータまたはプロセスに割り当てられたリソースが失われる可能性があります。 Kill は異常なプロセス終了を引き起こし、必要な場合にのみ使用する必要があります。 CloseMainWindow はプロセスを順番に終了し、すべてのウィンドウを閉じるので、インターフェイスを持つアプリケーションに適しています。 失敗した場合 CloseMainWindow は、 を使用 Kill してプロセスを終了できます。 Kill は、グラフィカル インターフェイスを持たないプロセスを終了する唯一の方法です。

を呼び出 Kill すことができるのは、 CloseMainWindow ローカル コンピューターで実行されているプロセスに対してのみです。 リモート コンピューター上のプロセスを終了させることはできません。 リモート コンピューターで実行されているプロセスの情報のみを表示できます。

適用対象