C# 转换音频表单资源
Posted
技术标签:
【中文标题】C# 转换音频表单资源【英文标题】:C# cast audio form resources 【发布时间】:2011-01-25 11:22:41 【问题描述】:我需要一些关于以下方面的帮助:
HomeArrayPicBox[i, j].Image = (Image)Properties.Resources.ResourceManager.GetObject("Scan" + i);
SoundPlayer fire = new SoundPlayer(Properties.Resources.fire);
对于 picbox,我可以使用 cast (Image) 从资源中加载图像。
我想知道如何为音频(即某种(音频))执行此操作?
这可能吗?
【问题讨论】:
【参考方案1】:是的,这是可能的。只需使用流:
System.IO.Stream stream = Properties.Resources.ResourceManager.GetStream("resource_name");
System.Media.SoundPlayer player = new System.Media.SoundPlayer(stream);
【讨论】:
以上是关于C# 转换音频表单资源的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin 表单将 Json 数组转换为 C# 并返回 JSON 数组