标签:获得 info from 图片加载 vat dex desktop lis 程序
namespace _13.ListBox控件的使用 //通过一个循环将图片加载至listBox
for (int i = 0; i < path.Length; i++)
{
//获得文件名
string fileName = Path.GetFileName(path[i]);
listBox1.Items.Add(fileName);
//将图片的全路径添加到List泛型集合中
list.Add(path[i]);
}
}
private void listBox1_DoubleClick(object sender, EventArgs e)
{
//双击listBox图片名,右侧pictureBox显示对应的图片
pictureBox1.Image = Image.FromFile(list[listBox1.SelectedIndex]);
}
}
}
标签:获得 info from 图片加载 vat dex desktop lis 程序
原文地址:https://blog.51cto.com/12679593/2398522