Winform 打开下载的文件
摘要:
private void OpenFile(string filename) { ProcessStartInfo sInfo = new ProcessStartInfo(); sInfo.WindowStyle = ProcessWindowStyle.Maximized; ThreadPool.QueueUserWorkItem( delegate(object o){ Process p=System.Diagnostics.Process.Start(filename);}); ... 阅读全文
posted @ 2013-11-12 09:11 遗忘海岸 阅读(320) 评论(0) 推荐(0) 编辑