gpt4 book ai didi

c# - Visual Studio Windows Phone 7 播放声音

转载 作者:行者123 更新时间:2023-11-30 14:41:19 26 4
gpt4 key购买 nike

我正在创建 Windows Phone 7 应用程序并尝试播放声音。

我有执行此操作的代码,但当我尝试在模拟器上运行它时找不到文件。

我已将声音文件添加为资源(我认为)

这里是代码,以防出现问题

PlaySound(@"Sounds\show.wav");

函数

private void PlaySound(string path)
{
try
{
if (!string.IsNullOrEmpty(path))
{
using (var stream = TitleContainer.OpenStream(path))
{
if (stream != null)
{
var effect = SoundEffect.FromStream(stream);
FrameworkDispatcher.Update();
effect.Play();
}
}
}
}catch(Exception e){
timerCount.Text = path;
}
}

最佳答案

将文件的 Build Action 设置为 Content

关于c# - Visual Studio Windows Phone 7 播放声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4293721/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com