在我的adds_form中,我使用此代码从其项目箱中浏览图像以显示为客户图片框背景。我在设计中运行它也正常工作,但在作为.exe文件发布并安装到本地计算机或不同的计算机后,它不再浏览此bg。
private void loadimage()
{
try
{
string path = Environment.CurrentDirectory + "\\image\\bguser.png";
if (File.Exists(path))
{
piccustomer.Image = null;
this.piccustomer.Image = System.Drawing.Image.FromFile(path);
}
}
catch (SqlException ex)
{
MessageBox.Show(ex.ToString());
return;
}
}
成功插入数据后,cleartext()
跟随@it是清除所有文本的方法。我把它放到了清除图片框并再次加载bg。
piccustomer.Image = null;
loadimage();
但loadimage()
无效。
有什么问题?