图像列表,删除参考
本文关键字:参考 删除 列表 图像 | 更新日期: 2023-09-27 18:09:51
目前我正在使用ImageList控件,试图从网络上复制文件并覆盖ImageList上的内容。但是,当我尝试在列表填充后复制图像时,由于图像已加载,因此无法复制图像。我尝试过使用。dispose()和。images . clear(),但从我所读到的内容来看,没有删除对图像本身的引用,因此可以替换它。
imageList1.Images.Clear();
imageList2.Images.Clear();
int i = 1500;
string fileName,sourcePath,targetPath,destFile = string.Empty;
Image img = null;
int counter = 0;
bool exists = false;
string image = string.Empty;
MiscManager MM = new MiscManager();
//filePath = MM.GetBobbinImagePath();
filePath = @"C:'Program Files'Images";
sourcePath = @"''network Images";
targetPath = filePath;
if (!System.IO.Directory.Exists(targetPath))
{
System.IO.Directory.CreateDirectory(targetPath);
}
if (System.IO.Directory.Exists(sourcePath))
{
string[] files = System.IO.Directory.GetFiles(sourcePath);
foreach (string n in files)
{
fileName = System.IO.Path.GetFileName(n);
destFile = System.IO.Path.Combine(targetPath, fileName);
try
{
System.IO.File.Copy(n, destFile, true);
}
catch
{
MessageBox.Show("File in use",fileName);
}
}
}
do
{
if (i < 10)
{
fileName = "000" + Convert.ToString(i);
}
else if (i > 10 && i < 100)
{
fileName = "00" + Convert.ToString(i);
}
else if (i >= 100 && i < 1000)
{
fileName = "0" + Convert.ToString(i);
}
else
{
fileName = Convert.ToString(i);
}
image = filePath + fileName + ".bmp";
exists = File.Exists(image);
if (exists)
{
img = Image.FromFile(image);
imageList1.Images.Add(img);
imageList2.Images.Add(img);
imageList1.Images.SetKeyName(counter, Convert.ToString(i) + ".bmp");
imageList2.Images.SetKeyName(counter, Convert.ToString(i) + ".bmp");
counter++;
}
i++;
} while (i < 10000);
我不太了解图像列表,所以任何帮助总是非常感激。在c#和VS 2010中
您可以使用MemoryStream
,这样您的图像就不会保留对文件流的引用:
using(MemoryStream ms = new MemoryStream(File.ReadAllBytes(image))
{
img = Image.FromStream(ms);
}