最近在做一个WP7的客户端,中间涉及到了从互联网上获取图片,而手机的无线网络其实很慢的(哪怕是联通的3G我也没感觉有多么快),所以缓存我想还是必不可少的吧。

其实做在WP7上面做缓存很容易,直接上代码了:


<Image Height="150" Canvas.Left="8" Canvas.Top="8" Width="150" Source="{Binding PicID, Converter={StaticResource ImageConverter}, Mode=OneWay}"/> 

 图片Image控件主要就是Source属性的设置,绑定图片的ID,并且设置好Converter。

 

public class ImageConverter : IValueConverter
    {

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

            ImageSource source = ImageCache.GetImage(value.ToString());

            return source;
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return "";
        }

    } 

 Converter中其实没什么太多内容,主要是把PICID传递给缓存类,下面是缓存代码:

 

 public class ImageCache

    {
        public static Dictionary<string, ImageSource> ImageSources = new Dictionary<string, ImageSource>();

        static ImageCache()
        {
            ImageSources.Add(""new BitmapImage(new Uri(StaticResource.PathNoImage, UriKind.Relative))); 
        }

        public static ImageSource GetImage(string imageId)
        {
            if (!ImageSources.ContainsKey(imageId))
            {
                ImageSource source = new BitmapImage(new Uri(StaticResource.UrlPicture + imageId));
                ImageSources.Add(imageId, source);
            }

            return ImageSources[imageId];
        }
    }


 我的这个缓存只是在内存中开了一个Dictionary<string, ImageSource>来进行缓存的,当然大家有兴趣还可以使用隔离存储空间来存储图片。

 

 

再补充一点:在mango里(之前版本没试过呢),从网络上获取图片不用很费劲的去写Http请求了,直接

ImageSource source = new BitmapImage(new Uri("图片的http地址")); 

就可以啦。 

 

相关文章:

  • 2021-12-01
  • 2022-02-14
  • 2021-12-02
  • 2021-12-26
  • 2022-03-05
  • 2021-11-04
  • 2021-12-19
猜你喜欢
  • 2021-11-14
  • 2021-11-12
  • 2021-12-21
  • 2021-12-17
  • 2021-09-30
  • 2021-10-06
  • 2021-07-20
相关资源
相似解决方案