2009-07-02 154 views
0

嗨可以一些身體幫助我如何在c#中調用process.existed()方法?process.existed()沒有被解僱

其實我註冊了頁面加載它自己的方法,但它並沒有被解僱我可能知道原因嗎?

myprocess.Exited += new EventHandler(myprocess_Exited); 

void myprocess_Exited(object sender, EventArgs e) 
    { 
     lblmsg.Visible = true; 
     lblmsg.Text = "Process end..."; 
    } 

謝謝 納古

回答

4

我的猜測是,你沒有設置

myprocess.EnableRaisingEvents = true; 

(詳情請參見the documentation。)