使用系统自带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