退出打开应用程序

时间:2016-10-23 20:49:15

标签: c#

我想知道如何正确退出已打开的应用程序。 我目前正在尝试的方式不起作用。

这就是我打开应用程序的方式:

private void button1_Click(object sender, EventArgs e)
{
    if (status != true)
    {
        status = true;

        // Start a process to print a file and raise an event when done.
        myProcess.StartInfo.FileName = "C:\\Users\\David\\Desktop\\Test\\Test.exe";
        myProcess.Exited += new EventHandler(Process_Exited);
        myProcess.EnableRaisingEvents = true;
        myProcess.Start();
    }
}

private void button2_Click(object sender, EventArgs e)
{
    myProcess.Close();
    status = false;
}

1 个答案:

答案 0 :(得分:-1)

我设法做到了,只是这样做:

myProcess.Kill();