我发现问题几乎相同,但不是一个好的答案:
我用 backgroundworker 下载了一些图片并将它们设置在列表视图中,如下所示:
void _backgroundWorker_DoWork(object sender, DoWorkEventArgs e)
{
try
{
lsvHeros.Dispatcher.BeginInvoke(new Action(() => lsvHeros.ItemsSource = null));
_heros = CountersHandler.GetCounters(e.Argument.ToString());
}
catch (Exception ex)
{
_heros = new List<Hero>();
}
}
网格定义如下:
<ListView x:Name="lsvHeros" Height="140" Width="160">
<ListView.View>
<GridView>
<GridViewColumn Header="" Width="40">
<GridViewColumn.CellTemplate>
<DataTemplate>
<Image Source="{Binding HeroIcon}" Width="24" Height="24" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Width="110" DisplayMemberBinding="{Binding HeroName}" Header="" />
</GridView>
</ListView.View>
</ListView>
然后我在 done 事件中设置 itemssource:
void _backgroundWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
lsvHeros.ItemsSource = _heros;
SetWaitMode(false);
txbHeroName.Select(0, txbHeroName.Text.Length);
txbHeroName.Focus();
}
问题:即使我将itemssource设置为null,我下载的图片仍然被锁定。这绝对是绑定的问题,因为当我不绑定它们时,我可以随时删除它们。
如果我想手动删除te文件夹中的图片,它会告诉我它们被另一个进程锁定。
那么是否有适当的解决方案来解锁图片,以便在重新运行程序时删除它们?
感谢您的答复
穆勒·马蒂亚斯
PS 认为我如何下载文件并不重要。我基本上是下载一个页面的整个html文本,搜索一些我知道的模式然后下载。这是代码:
private static Hero HandleCounter(string str)
{
const string IMG = @"img src=""";
Hero result = new Hero();
string picture = str.Substring(str.IndexOf(IMG) + IMG.Length);
picture = picture.Substring(0, picture.IndexOf("png", 0) + 3);
string file = Path.Combine(FileHandler.GetFilePath(ImagePath.Counters), Path.GetFileName(picture));
File.Create(file).Dispose();
using (WebClient client = new WebClient())
{
client.DownloadFile(picture, file);
}
result.HeroIcon = file;
result.HeroName = Path.GetFileNameWithoutExtension(file).ToLower();
result.HeroName = result.HeroName.Substring(0, 1).ToUpper() + result.HeroName.Substring(1);
return result;
}
GetFilePath 给我一个本地路径:
public static string GetFilePath(ImagePath iP)
{
string result = Path.Combine(Directory.GetCurrentDirectory(), "Images", iP.ToString());
if (!Directory.Exists(result))
Directory.CreateDirectory(result);
return result;
}
由于这只是我为了我的乐趣而制作的一个程序,它显然不是很正确的编码。例如,我经常创建和删除目录。