我只能从应用程序存储中播放文件,但是,我必须从库或其他来源播放文件。我尝试:
var storageFile = await StorageFile.GetFileFromApplicationUriAsync(new Uri("C:\\Users\\admin\\Music\\line.mp3"));
var stream = await storageFile.OpenAsync(FileAccessMode.Read);
mediaElement.SetSource(stream, storageFile.ContentType);
mediaElement.Play();
它给出了异常:“Polar.exe 中发生了 'System.ArgumentException' 类型的异常,但未在用户代码中处理。附加信息:值不在预期范围内。”
我尝试了 mediaElement.Source() ,但元素没有播放声音。没有例外,什么都没有。
我认为这是一个愚蠢的问题,但我找不到解决方案。我做错了什么?