C#播放音乐的四种方法

用 .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();


本文转自:http://18888888.blog.51cto.com/3075201/565577

你可能感兴趣的:(.NET)