I need to use BitMapImage framework in my Windows Store Application. I need to create item in GridView and fill it by image. I know the following example:
Image img = new Image();
img.Source = new BitmapImage(new Uri(url));
imagesGrid.Items.Add(img);
But, when I'm trying to use BitmapImage, I can't. Visual Studio doesn't have this object. I think i need to import framework, so does someone know that?