2011-10-20 57 views
0

WPF應用程序加載一個xml文件,其中包含要安裝的應用程序列表。wpf - 啓動進程並退出應用程序

我用

System.Diagnostics.Process.Start(setupFilePath, commandLineArguments); 

要安裝此WPF應用程序需要被退出應用程序之一。在撥打System.Diagnostics.Process.Start(setupFilePath,commandLineArguments);

之前,我嘗試了下面的代碼,它仍然沒有關閉。

System.Windows.Forms.Application.Exit(); 
System.Windows.Application.Current.Shutdown(1); 

回答

2

嘗試Environment.Exit()代替

+0

它的工作。謝謝。 – gangt

相關問題