MediaElement不播放任何声音的原因是什么
这是我遇到问题的代码:
MediaElement media = new MediaElement();
media.Source = new Uri("/ding.wav", UriKind.Relative);
media.Play();
包含该代码的文件夹与声音相同。我的意思是,它们位于同一个文件夹中。文件的构建操作是 RESOURCE。
它不播放任何声音。发生什么事了?
This the code which I'm having problems:
MediaElement media = new MediaElement();
media.Source = new Uri("/ding.wav", UriKind.Relative);
media.Play();
The folder where contains that code is the same for the sound. I mean, they are in the same folder. And the build action from the file is RESOURCE.
It doesn't play any sound. What's happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
注意:当我尝试时,我将“构建操作”设置为“内容”,并将 ding.wav 的“复制到输出目录”设置为“始终复制”。
Try
Note: When I tried, I had Build Action set to
Content
and Copy to Output Directory to"Copy Always"
for ding.wav.