ある種のファイルの列挙が必要です。1 つの方法は、ユーザーがOpenFileDialog.Multiselect
プロパティで複数のファイルを選択できるようにすることです。OpenFileDialog
選択したすべてのファイル名を含むプロパティ Files を公開します。
class MyPictureViewer
{
protected string[] pFileNames;
protected int pCurrentImage = -1;
private void openButton_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Filter = "JPEG|*.jpg|Bitmaps|*.bmp";
if(openFileDialog.ShowDialog()== DialogResult.OK)
{
pFileNames = openFileDialog.FileNames;
pCurrentImage=0;
ShowCurrentImage();
}
}
protected void ShowCurrentImage()
{
if(pCurrentImage >= 0 && pCurrentImage < pFileNames.Length-1)
{
pictureBox1.Image = Bitmap.FromFile(pFileNames[pCurrentImage]);
}
}
}
次のクリックイベントと前のクリックイベントのイベントハンドラーを実装して、境界線をチェックするか (最後の画像に到達したら、それを超えないようにします)、循環します (ユーザーが最後の画像で [次へ] をクリックすると、最初の画像にジャンプします)。 )
void btnNextImage_Click(object sender, EventArgs e)
{
++pCurrentImage;
//check if this was last image in list
if(pCurrentImage >= pFileNames.Length)
pCurrentImage = pFileNames.Length == 0? -1 : 0;//if this was last image, go to first image
ShowCurrentImage();
}
void btnPrevImage_Click(object sender, EventArgs e)
{
--pCurrentImage;
//check if this was first image in list
if (pCurrentImage < 0)
pCurrentImage = pFileNames.Length == 0 ? -1 : pFileNames.Length -1;//if this was first image, go to last image
ShowCurrentImage();
}