C#调用windows图片查看器方法
private void ViewOriginalImg(String img_path)
{
try
{
System.Diagnostics.Process process2 = new System.Diagnostics.Process();
process2.StartInfo.FileName = img_path;
process2.StartInfo.Arguments = "rundll32.exe C://WINDOWS//system32//shimgvw.dll,ImageView_Fullscreen";
process2.StartInfo.UseShellExecute = true;
process2.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
process2.Start();
process2.Close();
}
catch
{
}
}