.net を使用して Windows アプリケーションを作成しました。それは正常に動作します。アプリケーションを閉じても、アプリケーションがバックグラウンドで実行されているのではないかと疑っています。アプリケーションを閉じた後、まだ実行中のタスクマネージャーアプリケーションでもアプリケーションを閉じました。プロセスを終了する方法。あなたの提案をください。
質問する
83 次
3 に答える
0
I guess you created a thread and launched the Process from that thread. By default, a thread would be a Foreground thread. So, even if you close the MainWindow, the application would continue to run. On your main form close, do these 1) // Close process by sending a close message to its main window. myProcess.CloseMainWindow(); // Free resources associated with process. myProcess.Close(); Both the calls are required!! 2) Stop the thread
于 2013-10-16T06:23:57.807 に答える