如果您添加对Microsoft.Xna.Framework.dll的引用(是的,即使在Silverlight应用程序中),您也可以访问
PicturesCollection.
原文链接:https://www.f2er.com/windows/364462.htmlvar 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 } }