首先要记录 加载到PictureBox的图片的本地路径,可以存储到某一变量或者放到PICTUREBOX的TAG属性中
引入命名空间
using System.IO;
点击按钮删除,在按钮点击事件中写如下代码
string filePath=PictrueBox1.Tag.ToString();
if(File.Exists(filePath)){
try{
File.Delete(FilePath);
}catch(Exception e){
MessageBox.Show(e.Message);
}
}