private void btnFiles_Click(object sender, EventArgs e)
{
if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
{
txtFiles.Text = folderBrowserDialog1.SelectedPath.ToString();
string str = txtFiles.Text;
string[] filenames = Directory.GetFiles(str);
Image p = Image.FromFile(filenames[0]);
rectImage.BackgroundImage = p;//就可以了
}
}
代码的功能实在按钮事件中,加载一个包含很多图像的文件夹,在下面的图片框中显示某一个图像,(filenames[0]);其中【0】 可以换成别的 |