我有一段代碼顯示文件的屬性窗口,等待屬性窗口對話框之前繼續腳本
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = @"C:\Users\nyongrand\Desktop\Internet Download Manager.lnk";
psi.Verb = "properties";
Process process = Process.Start(psi);
process.WaitForExit(); //This give me exception, Object reference not set to an instance of an object.
我要的是等到窗口屬性被關閉,因爲如果我的代碼關閉屬性窗口也會關閉,我需要一個解決方案,我的代碼可以等待屬性窗口關閉,或者我的代碼可以退出而不關閉屬性窗口。
好的,我在閱讀文檔時錯過了那一個。寫得很好。 – Adrian 2013-05-08 00:04:01