我有WPF图像,它的来源是我的硬盘上的本地图像URI,我使用转换器来加载它。
我想改变硬盘上的图像(用另一个替换它) 并在运行时中显示新图像
这里是图像的XAML
<Image Stretch="Fill">
<Image.Style>
<Style TargetType="Image">
<Setter Property="Source" Value="{Binding ImagePath,Converter={StaticResource ImageFileLoader},UpdateSourceTrigger=PropertyChanged}"/>
</Style>
</Image.Style>
</Image>
这是转换器
class ImageFileLoader : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value != null)
{
string filePath = value.ToString();
if (File.Exists(filePath))
{
BitmapImage result = new BitmapImage();
result.BeginInit();
result.UriSource = new Uri(filePath);
result.CacheOption = BitmapCacheOption.OnLoad;
result.EndInit();
return result;
}
}
return null;
}
}
注意:我尝试将转换器中的CacheOption
更改为BitmapCacheOption.None
或任何其他选项......它确实无法正常工作,因为在这种情况下我无法改变硬盘上的图像磁盘
答案 0 :(得分:2)
当框架加载Image
时,会对其产生令人讨厌的影响,因此,如果您尝试删除或移动实际的图像文件,那么您将获得Exception
一句话喜欢因为正在使用而无法访问该文件。为了解决这个问题,我创建了一个与您类似的IValueConverter
,以便将Image.CacheOption
设置为BitmapCacheOption.OnLoad
,其中在加载时将整个图像缓存到内存中,从而取消保留。
但是,我的转换器中的代码与您的代码类似,所以我不确定它为什么不能为您工作。以下是我的IValueConverter
代码:
using (FileStream stream = File.OpenRead(filePath))
{
image.BeginInit();
image.StreamSource = stream;
image.CacheOption = BitmapCacheOption.OnLoad;
image.EndInit();
}