1

1つのフォルダの任意の画像の画像ボックスを作成するときにダイアログプログラムを作成し、このダイアログを閉じるときに画像ボックスを削除したいのですが、例外を受け取り、この例外は次のように通知します。ファイル0.jpgは別のプロセスで使用されています

しかし、それで、私はすべてのピクチャーボックスを処分しようとしました...もちろん、私の知る限り、私はすべての可能なことを試みました...

だから、私のサンプルコードは次のとおりです。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Windows.Forms;

namespace delFolder
{
    public partial class FormPictureView : Form
    {
        private PictureBox pbSel = null;

        public FormPictureView()
        {
            InitializeComponent();

            AddPictureBox();
        }

        private void AddPictureBox()
        {
            int linha = 0;
            int x = 10, y = 10;
            string pngOutputPath = @"images\";

            string[] files = Directory.GetFiles(pngOutputPath);
            for (int i = 0; i < files.Length; i++)
            {
                if (linha == 2)
                {
                    x = 10;
                    y += 360;
                    linha = 0;
                }
                PictureBox pb = new PictureBox();
                pb.Name = string.Format("pb{0}", i);
                pb.Size = new Size(236, 321);
                pb.SizeMode = PictureBoxSizeMode.Zoom;
                pb.Image = Image.FromFile(string.Format("{0}{1}.jpg", pngOutputPath, i));
                pb.BackColor = Color.White;
                pb.Click += new EventHandler(pb_Click);
                pb.Tag = string.Format("{0}{1}.jpg", pngOutputPath, i);
                pb.Location = new System.Drawing.Point(x, y);
                panel1.Controls.Add(pb);
                x += 280;
                linha++;
            }
        }

        private void pb_Click(object sender, EventArgs e)
        {
            if (pbSel != null)
                pbSel.BorderStyle = BorderStyle.None;
            PictureBox pb = (PictureBox)sender;
            pb.BorderStyle = BorderStyle.FixedSingle;
            pbSel = pb;
            MessageBox.Show(pb.Tag.ToString());
        }
    }
}

そして、このダイアログはメインフォームのMDIParentです...そして、このダイアログを閉じると、画像ボックスを削除しようとしますが、それは不可能です:(どうすればこれを解決できますか?

4

3 に答える 3

4

PictureBoxでDispose()する必要があります。Image

于 2013-02-08T15:40:26.687 に答える
1

Image プロパティの代わりに ImageLocation プロパティを設定すると、ファイルのロックは取得されず、ファイルを削除できます。ただし、PictureBox で画像を使用できなくなり、「画像なし」アイコンが表示されます。

これを解決するには、画像を削除する前にメモリにコピーします。

string imgPath = string.Format("{0}{1}.jpg", pngOutputPath, i);
// Retrieve image from file
Image img = Image.FromFile(imgPath);
// Create new canvas to paint the picture in
Bitmap tempImg = new Bitmap(img.Width, img.Height);
// Paint image in memory
using (Graphics g = Graphics.FromImage(tempImg))
{
   g.DrawImage(img, 0, 0);
}
// Assign image to PictureBox
pb.Image = tempImg;
// Dispose original image and free handles
img.Dispose();
// Delete the original file
File.Delete(imgPath);
于 2013-02-08T15:54:49.783 に答える
0

画像を削除する前にyourPictureBox.image設定してくださいnull

于 2013-02-08T15:42:28.843 に答える