纳速健身
标题:
如何显示文件夹中的某个文件
[打印本页]
作者:
yaokai
时间:
2009-5-9 22:04
标题:
如何显示文件夹中的某个文件
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】 可以换成别的
欢迎光临 纳速健身 (https://nasue.com/)
Powered by Discuz! X3.4