C#WInForm中加载图片到pictureBox并在label上生成名称? 求高手解决。我是学.net的
1个回答
展开全部
如果你是是用file路径加载的,那么直接获取文件的名字就可以了,
如果用imageList图片控件预先保存的图片,那么可已先添加图片到imageList中,然后修改好每个图片的name!!
int index=0;
pictureBox1.image=imageList.Images[index];
lable1.text= imageList1.Images.Keys[index];
如果用imageList图片控件预先保存的图片,那么可已先添加图片到imageList中,然后修改好每个图片的name!!
int index=0;
pictureBox1.image=imageList.Images[index];
lable1.text= imageList1.Images.Keys[index];
更多追问追答
追问
OpenFileDialog f1 = new OpenFileDialog();
if (f1.ShowDialog() == DialogResult.OK)
{ try{ this.pictureBox_zhaop.BackgroundImage = Image.FromFile(f1.FileName); }
这是加载的代码。因为我连接了数据库,所以图片不能内定。想自动生成名称到数据库中~
追答
哪你就填写一个名称到数据库里面保存就是了撒!!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询