阅读83 返回首页    go 阿里云 go 技术社区[云栖]


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

  上一篇:go Calculate Number Frequency
  下一篇:go Android 适配器教程 (六)