複数の .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();