Reputation: 1049
Is there any other way to access the photos stored on a WP7 device other than the PhotoChooserTask?
Upvotes: 7
Views: 1921
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