画好图后保存为1.jpg放入PictureBox1以后,若改变比例尺再次保存1.jgp时,报“1.jgp正由另一进程使用”错误,如何让1.jpg先与PictureBox1脱钩。施行了以下操作均无效:            g = Picture1.CreateGraphics();
            g.Clear(Picture1.BackColor);
            Picture1.Image = Image.FromFile(bmpFilePath);................            if (File.Exists(bmpFilePath))  File.Delete(bmpFilePath);//在这儿出错,报“1.jgp正由另一进程使用”错误,            bmp.Save(bmpFilePath);//因为在这出错报“GDI+ 中发生一般性错误”才加了上句
            bmp.Dispose();
            g.Dispose();
            GC.Collect();