标签: c# visual-studio-2010 audio
我想要一个wav文件在打开时在窗体的背景中播放。我该怎么做?
答案 0 :(得分:0)
如果要播放文件,请将以下代码添加到事件中:
var player = new System.Media.SoundPlayer(); player.SoundLocation = @"D:\.....\some file.wav"; player.Load(); player.Play();