使用係統自帶windows圖片查看器打開圖片
代碼如下:
System.Diagnostics.Process process = new System.Diagnostics.Process(); process.StartInfo.FileName = "D:\1.jpg"; process.StartInfo.Arguments = "rundll32.exe C://WINDOWS//system32//shimgvw.dll"; process.StartInfo.UseShellExecute = true; process.Start();
最後更新:2017-04-03 05:39:35