我正在尝试显示用户选择的文件夹中的图像。如果他选择了没有任何图片的记录,它将显示一个名为的图像
空.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;
}
}