C#关闭IE相应的窗口 .
摘要:
window.close();System.Diagnostics.Process[] myProcesses; myProcesses = System.Diagnostics.Process.GetProcessesByName("IEXPLORE"); foreach (System.Diagnostics.Process instance in myProcesses) { instance.CloseMainWindow(); }instance.kill(); Process[] pros = System.Diagnostics.Proce... 阅读全文
posted @ 2012-05-09 22:34 HOT SUMMER 阅读(3463) 评论(0) 推荐(0) 编辑