用 .NET 自带的类库 System.Media 下面的 SoundPlayer 来播放音乐的方式,此种方式使用托管代码,应该是更为可取的方式吧  

使用起来非常简单,下面稍作说明:

1. 支持同步、异步播放

2. 支持循环播放

3. 支持文件和流播放

同步播放:

System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = @"d:\music\happy.wav";
player.Load();
player.Play();
 
异步播放:

System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = @"d:\music\happy.mid";
player.LoadAsync();
player.PlaySync(); 

循环播放:

System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = @"d:\music\happy.wav";
player.Load();
player.PlayLooping();

 

相关文章:

  • 2021-10-03
  • 2021-11-04
  • 2021-12-05
  • 2021-12-25
  • 2021-12-05
  • 2021-12-05
猜你喜欢
  • 2020-02-26
  • 2021-11-23
  • 2021-12-05
  • 2021-09-14
  • 2021-11-13
  • 2021-09-14
  • 2021-09-28
相关资源
相似解决方案