我的代码中有一点问题..
private void PlaySound(string name_file_audio)
{
using (var isf = IsolatedStorageFile.GetUserStoreForApplication())
{
if (isf.FileExists(name_file_audio))
{
using (var isoStream = isf.OpenFile(name_file_audio, FileMode.Open, FileAccess.Read))
{
**mediaSound**.Stop();
**mediaSound**.SetSource(isoStream);
**mediaSound**.Position = System.TimeSpan.FromSeconds(0);
**mediaSound**.Volume = 20;
**mediaSound**.Play();
}
}
}
}
问题是 mediasound ..当我尝试导入引用时没有出现..任何人都可以告诉我该怎么做?我认为该方法是正确的,但我无法测试它,因为错误..
已解决
以下是解决方案:
- > Incorrect value in string