我在我的代码中执行以下操作(简化):
this.ImageComponent.Source = new BitmapImage(new Uri("myImage.jpg", UriKind.Absolute));
我有一个按钮,当我点击它时,我会执行以下操作:
this.ImageComponent.Source = new BitmapImage(new Uri("anotherImage.jpg", UriKind.Absolute));
System.IO.File.Delete("myImage.jpg");
但我对删除有一个例外,它说它可以访问该文件,因为它被另一个进程使用。 (我尝试过完整和相对的路径)。