我试图在程序启动时启动.wav音乐文件。 不,我不打算在用户点击按钮时播放音乐,我试图在程序启动时自行启动音乐。
我的C#程序需要它。
答案 0 :(得分:0)
使用SoundPlayer并在Main方法中调用它:
private static void Main(string[] args)
{
System.Media.SoundPlayer player = new System.Media.SoundPlayer(@"c:\test.wav");
player.Play();
// do something else....
}