Tyler
Tyler

Reputation: 1049

Access Photos stored on WP7 device

Is there any other way to access the photos stored on a WP7 device other than the PhotoChooserTask?

Upvotes: 7

Views: 1921

Answers (1)

Matt Lacey
Matt Lacey

Reputation: 65586

If you add a reference to Microsoft.Xna.Framework.dll (yes, even in a Silverlight app) you can access the PicturesCollection.

var ml = new Microsoft.Xna.Framework.Media.MediaLibrary();

using (var pics = ml.Pictures)
{
    foreach (var picture in pics)
    {
        // voila! access to the pictures on the phone
    }
}

Upvotes: 5

Related Questions