WPF数据绑定到imagefile锁定永久文件

时间:2016-06-06 06:27:13

标签: c# wpf xaml data-binding locking

我目前正在尝试在WPF对话框中显示图像,该对话框可以随时由用户替换,从而导致覆盖此图像文件。我的问题是:当我的对话框中显示图像时,图像似乎被WPF锁定,因此当我尝试替换它时,无法访问它。

如何在上传新图片时强制WPF发布图片?这是我的代码的一部分:

XAML:

<Image Margin="6" VerticalAlignment="Center" HorizontalAlignment="Center" Source="{Binding ImageFileFullPath}"/>

C#:

string sourceFile = openFileDialog.FileName;
string destinationFile = Path.Combine(Environment.ExpandEnvironmentVariables(Constants.ImagePathConstant), destinationFileWithoutPath);
mViewModel.ImageFileFullPath = ""; //temporarily set the image file to another entry hoping WPF releases my image
try
{
    File.Copy(sourceFile, destinationFile, true); //fails the second time with exception 
}
catch (Exception)
{                   
    throw;
}

即使尝试暂时将图像设置为空路径也无法解决问题。

我得到的例外情况: 类型&#39; System.IO.IOException&#39;的未处理异常发生在PresentationFramework.dll

1 个答案:

答案 0 :(得分:1)

我遇到的情况是我需要用户选择要显示的图像,然后移动图像的位置。我很快发现的是,当我被绑定到图像时,我正在拿着一个文件锁,阻止我移动它。在BitmapImage上有一个CacheOption,允许您缓存OnLoad。不幸的是我无法在Image的绑定上设置这个以便绕过它我必须在Source上使用转换器:

public class ImageCacheConverter : IValueConverter
{
    public object Convert(object value, Type targetType,
        object parameter, System.Globalization.CultureInfo culture)
    {

        var path = (string)value;
        // load the image, specify CacheOption so the file is not locked
        var image = new BitmapImage();
        image.BeginInit();
        image.CacheOption = BitmapCacheOption.OnLoad;
        image.UriSource = new Uri(path);
        image.EndInit();

        return image;

    }

    public object ConvertBack(object value, Type targetType,
        object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException("Not implemented.");
    }
} 

XAML:

<Image Source="{Binding Path=SmallThumbnailImageLocation, Converter=StaticResource imagePathConverter}}"/>