Create Image Viewer for Windows Phone 7

No.of Views1268
Bookmarked1 times
Downloads 
Votes0
By  Dhananjay Kumar   On  08 Apr 2010 11:04:05
Tag : Windows Phone , Applications
This article will give step to step illustration of creating a simple Image Viewer for Windows Phone 7.
emailbookmarkadd commentsprint

Images in this article missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at info@codegain.com

 

Objective

This article will give step to step illustration of creating a simple Image Viewer for Windows Phone 7 .

Step 1

Create a new Windows Phone Application.  From Silverlight for Windows Phone tab select Windows Phone Application project type.
 

Image Loading

Step 2

In this step I will create an entity class for images to be displayed.  This class will contain two properties. Filename property for the name of the image and image property for the image source.  To create just right click on the project and add a class.

Photo.cs

namespace PhotoApplication
{
    public class Photo
    {
        public string FileName { get; set; }
        public ImageSource Image { get; set; }

    }
}

Step 3

Design the page as below. Add below controls in content grid.
1.    Add a list box.  Set the height as 520 and width as 450.
2.    Add Item Template for List box.
3.    Add Data template inside item template
4.    Inside Data template add a stack panel with horizontal orientation.
5.    Inside Stack panel put an Image control and bind source of this control to image property of Photo class.
6.    Inside Stack panel put a text block and bind text property of this control to Filename property of Photo class.

MainPage.Xaml
 

Image Loading

Step 4

Right click on project and add few images in project. I am adding 5 jpeg images.  To add images  right click on project and click add existing item  then select images from local computer.  See below the images added in project 

Image Loading

Step 5

Right a function to convert filename into Bitmap image. The below function GetImage() will take filename as input and return an image source.

 

Image Loading

Right a function to initialize the collection of images.  Function GetPhotos() will return   an    observableCollection  of Photo class .  This collection can directly be bind to the itemsource of list box control. 

Image Loading

On the Main Page load bind the itmesource to collection.

MainPage.Xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Collections.ObjectModel;
using System.Windows.Media.Imaging; 

namespace PhotoApplication
{
    public partial class MainPage : PhoneApplicationPage
    {
        public MainPage()
        {
            InitializeComponent();

            SupportedOrientations = SupportedPageOrientation.Portrait | SupportedPageOrientation.Landscape;

            lstImage.ItemsSource = GetPhotos();
           
        }


        public ObservableCollection<Photo> GetPhotos()
        {
            ObservableCollection<Photo> photos = new ObservableCollection<Photo>()
                                                 {
                                                     new Photo(){FileName="A.jpg",Image=GetImage("A.jpg")},
                                                     new Photo(){FileName="B.jpg", Image = GetImage("B.jpg")},
                                                     new Photo(){FileName="C.jpg",Image = GetImage("C.jpg")},
                                                     new Photo(){FileName="D.jpg",Image = GetImage("D.jpg")},
                                                     new Photo(){FileName ="E.jpg",Image =GetImage("E.jpg")}
                                                 };
            return photos; 

        }

        private ImageSource GetImage(string fileName)
        {
            return new BitmapImage(new Uri(fileName, UriKind.Relative));
        }    


    }
}

Press F5 to get the output

 

Image Loading

Thanks for reading. I hope it was useful. Happy Coding.

 
Sign Up to vote for this article
 
About Author
 
Dhananjay Kumar
Occupation-Software Engineer
Company-Infosys Technolgies,Pune
Member Type-Gold
Location-India
Joined date-20 Jul 2009
Home Page-http://dhananjaykumar.net/
Blog Page-http://dhananjaykumar.net/
Dhananjay Kumar is Microsoft MVP on connected system. He blogs at http://dhananjaykumar.net/ . You can follow him http://twitter.com/debugmode_/ and reach him at dhananjay.25july@gmail.com
 
 
Other popularSectionarticles
Comments
There is no comments for this articles.
Leave a Reply
Title:
Display Name:
Email:
(not display in page for the security purphase)
Website:
Message:
Please refresh your screen using Ctrl+F5
If you can't read this number refresh your screen
Please input the anti-spam code that you can read in the image.
^ Scroll to Top