【已解决】C#导入音频文件
作者:互联网
C#导入音频文件,找到Resources.resx,再进行导入。
直接添加文件到Resources是不能使用的。
解决的具体步骤:
引用音频文件核心代码:
//播放背景音乐 SoundPlayer my_wave_file = new SoundPlayer(Properties.Resources.ClickNoise); my_wave_file.Play();
注:如果导入的文件(例如图片、音频)想要清空,可以直接删除“Resources.resx”
谢谢观看!
标签:resx,C#,音频文件,导入,file,Resources 来源: https://www.cnblogs.com/edcoder/p/11906709.html