我有 Windows Phone 8 应用程序,我想在其中包含我自己的 10 个 MP3。我将它们包含在 /Assets 中,但是像这样的调用
using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
{
songs = store.GetFileNames("*.mp3").ToList();
Console.WriteLine("Found {0} files ", songs.Count());
}
不断返回我商店中的 MP3 数量为 0。
我尝试将 MP3 放入 Content、Assets、Resources 并设置 Copy Always 选项,但无济于事。
任何帮助将不胜感激。