我需要添加一个Image
到我的面板,所以我使用以下代码:
var image = new Image();
var source = new BitmapImage();
source.BeginInit();
source.CacheOption = BitmapCacheOption.OnLoad;
source.StreamSource = new FileStream(filename, FileMode.Open);
source.EndInit();
// I close the StreamSource so I can load again the same file
source.StreamSource.Close();
image.Source = source;
问题是当我尝试使用我的图像源时,我得到一个ObjectDisposedException
:
var source = ((BitmapImage)image.Source).StreamSource;
// When I use source I get the exception
using (var stream = new MemoryStream((int)(source.Length)))
{
source.Position = 0;
source.CopyTo(stream);
// ...
}
发生这种情况是因为我关闭了源,但如果我不关闭它,我将无法再次加载同一个文件。
我该如何解决这个问题(即关闭源以便能够多次加载同一个文件,并且能够在不出现异常的情况下使用源)?