我编写了一个简单的代码来打开多个 .tiff 文件,但我想禁用下一个和上一个按钮。可能吗?有任何想法吗?
string Path = @"....\Desktop\Test Image.tif";
Process p = new Process();
p.StartInfo.FileName = "rundll32.exe";
//Arguments
p.StartInfo.Arguments = @"C:\WINDOWS\System32\shimgvw.dll,ImageView_Fullscreen " + Path;
p.Start();