C# 无法删除 Winform的PictureBox正在展示的图片

最近用C#的前端项目,写了PictureBox展示并上传图片。想删除掉已经展示和上传的图片,提示资源正在使用中不能删除。

查了一些原因,总结原因是PictureBox控件占用着图片资源,不允许删除。

从PictureBox展示图片入手,可以采用以下两个解决办法:

1:使用Bitmap类转接图片资源

Image bmp = new Bitmap(img);
this.twoPictureBox.Image = bmp;
img.Dispose();

2、让PictureBox接收文件流

private MemoryStream ReadFile(string path)
        {
            if (!File.Exists(path))
                return null;

            using (FileStream file = new FileStream(path, FileMode.Open))
            {
                byte[] b = new byte[file.Length];
                file.Read(b, 0, b.Length);

                MemoryStream stream = new MemoryStream(b);
                return stream;
            }
        }

 private Image GetFile(string path)
        {
            MemoryStream stream = ReadFile(path);
            return stream == null ? null : Image.FromStream(stream);
        }

this.twoPictureBox.Image = GetFile(filePath);

 

最后,删除时PictureBox释放掉资源,再删除文件

twoPictureBox.Image.Dispose();
twoPictureBox.Image = null;
File.Delete(filePath);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值