我試圖顯示從文件夾中的圖像,用戶selected.and如果他slected不具有任何圖片的記錄,它會顯示其被稱爲圖像C#檢查是否有圖片應用
Empty.png
這裏是我寫的代碼。我能怎樣改變,它會適合我在寫的交代?(這個問題的頂部)
string[] fileEntries = Directory.GetFiles(@"C:\Projects_2012\Project_Noam\Files\ProteinPic");
foreach (string fileName in fileEntries)
{
if (fileName.Contains(comboBox1.SelectedItem.ToString()))
{
Image image = Image.FromFile(fileName);
// Set the PictureBox image property to this image.
// ... Then, adjust its height and width properties.
pictureBox1.Image = image;
pictureBox1.Height = image.Height;
pictureBox1.Width = image.Width;
}
}
這是什麼意思「記錄沒有任何圖片」?你想知道fileName是圖像嗎? –
用戶在comboBox.it中選擇一條記錄,不是針對他選擇圖片的具體記錄,顯示「空」圖片 – Noam650