我在我的視圖和一個圖片框中有兩個按鈕。我想設計一個代碼,使圖片框在一個目錄中顯示圖像,並在點擊兩個按鈕之一後顯示下一個圖像。基本上,它應該等待用戶點擊按鈕。在Visual Studio C#中等待foreach循環點擊按鈕
這是示例代碼。請幫幫我。
foreach (string file in Directory.EnumerateFiles(sourcePathImages, "*.jpg"))
{
Image loadedImage = new Bitmap(file);
if (loadedImage != null)
{
pictureBox1.Image = loadedImage;
filename.Text = filenames[counter];
label.Text = labels[counter++];
}
}
什麼要添加到foreach循環,以便我的代碼等到兩個按鈕之一被按下。
這是不正確更不用說低效代碼迴路周圍等待點擊一個按鈕。請閱讀_events_ – MickyD
保存文件列表,然後改變按鈕處理程序中的圖像。 –
應該使用圖像按鈕 – Alex78191