用SoundPlayer类 然后写的下面这个代码,为什么只有b这个能发出声音,a发不出声音(a、b单独都能播放出来) private void button1_Click(object sender, EventArgs e) } } |
|
40分 |
如果a、b单独都可以发出声音,那么你在a、b发生之间,加一个Thread.Sleep(3000)
a、b的声音你就可以都听到了 SoundPlayer a = new SoundPlayer(Properties.Resources.a); a.Play(); Thread.Sleep(3000); SoundPlayer b = new SoundPlayer(Properties.Resources.b); b.Play(); |
我加了一个using System.Threading;然后把Thread.Sleep(3000);放在a、b中间,发现还是只有b发音,a没有声音,然后我又在a前面加了一个Thread.Sleep(100);然后两个都就能发出声音了,谢谢
|