System.Media.SoundPlayer

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

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

1. 支持同步、异步播放
2. 支持循环播放
3. 支持文件和流播放


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

异步播放:
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = @"d:\music\happy.mp3";
player.LoadAsync();
player.PlaySync();

循环播放:
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = @"d:\music\happy.mp3";
player.Load();
player.PlayLooping();
posted @ 2012-07-25 17:25  Fandy Xie  Views(568)  Comments(0Edit  收藏  举报