Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access Photos stored on WP7 device

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

like image 301
Tyler Avatar asked Jan 05 '11 20:01

Tyler


1 Answers

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
    }
}
like image 147
Matt Lacey Avatar answered Sep 28 '22 20:09

Matt Lacey