您可以使用专门的绑定转换器将每个图像保存到文件中。
下面的示例代码显示了这种转换器的基本结构。您将不得不添加一些错误处理,当然您需要定义从图像 URI 到本地文件路径的映射。您也可以支持System.Uri
作为替代源类型。
public class ImageConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var result = value;
var imageUrl = value as string;
if (imageUrl != null)
{
var buffer = (new WebClient().DownloadData(imageUrl));
if (buffer != null)
{
// create an appropriate file path here
File.WriteAllBytes("CachedImage.jpg", buffer);
var image = new BitmapImage();
result = image;
using (var stream = new MemoryStream(buffer))
{
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.StreamSource = stream;
image.EndInit();
}
}
}
return result;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotSupportedException();
}
}
您将在绑定中使用该转换器,如下所示:
<Image Source="{Binding Path=ImgUrl,
Converter={StaticResource ImageConverter}}" ... />