c#添加背景音乐方法
突然想做个小东西,送给自己过2010年的圣诞节,呵呵,祝自己圣诞节快乐!!
空间怎么添加背景音乐C#播放音乐,可以按照方法4拖一个Windows Media Player控件到窗体中,但是这不符合我的意思,我只想要一打开程序,就会有动听的背景音乐!
从网上了下,C#播放音乐的方法,出现了一点小问题,在此列出,希望有谁知道问题的,可以告诉我,谢谢啦!
C#播放背景音乐通常有四种方式:
1.播放系统事件声音
2.使用System.Media.SoundPlayer播放wav
3.使用MCI Command String多媒体设备程序接口播放mp3,avi等
4.使用axWindowsMediaPlayer的COM组件来播放
具体的使用方法:
1.播放系统事件声音
  System.Media.SystemSounds.Asterisk.Play();
  System.Media.SystemSounds.Beep.Play();
  System.Media.SystemSounds.Exclamation.Play();
  System.Media.SystemSounds.Hand.Play();
  System.Media.SystemSounds.Question.Play();
2.使用System.Media.SoundPlayer播放wav,mp3
  System.Media.SoundPlayer sp = new SoundPlayer();
  sp.SoundLocation = @"恋爱ing.wav";
  sp.PlayLooping();
注:使用这种方法,总是提示出 该文件不是波形文件,很郁闷,还是没有出原因!!
使用VS2008的话,直接添加System.Media命名空间即可!很简单!
3.使用MCI Command String多媒体设备程序接口播放mp3,avi等
  using System.Runtime.InteropServices;
  public static uint SND_ASYNC = 0x0001;
  public static uint SND_FILENAME = 0x00020000;
  [DllImport("winmm.dll")]
  public static extern uint mciSendString(string lpstrCommand,
  string lpstrReturnString, uint uReturnLength, uint hWndCallback);
  public void Play()
  {
    mciSendString(@"close temp_alias", null, 0, 0);
    mciSendString(@"open ""恋爱ing.mp3"" alias temp_alias", null, 0, 0);
    mciSendString("play temp_alias repeat", null, 0, 0);
  }
关于mciSendString的详细参数说明,请参见MSDN,或是blog.csdn/psongchao/archive/2007/01/19/1487788.aspx
这个方法可以识别一般的文件,比较强大!!
4.使用axWindowsMediaPlayer的COM组件来播放
a.加载COM组件:ToolBox->Choose Items->COM Components->Windows Media Player如下图:
b.把Windows Media Player控件拖放到Winform窗体中,把axWindowsMediaPlayer1中URL属性设置为MP3或是AVI的文件路径,F5运行。
如何使用Windows Media Player循环播放列表中的媒体文件?
假设我们有一个播放列表,下面的代码可以实现自动循环播放
private void axWindowsMediaPlayer1_PlayStateChange(object sender, AxWMPLib._WMPOCXEven
ts_PlayStateChangeEvent e)
 {
  if (axWindowsMediaPlayer1.playState == WMPLib.WMPPlayState.wmppsMediaEnded)
  {
    Thread thread = new Thread(new Thre
adStart(PlayThread));
    thread.Start();
  }
 }
private void PlayThread()
{
  axWindowsMediaPlayer1.URL = @"E:\Music\SomeOne.avi";
  axWindowsMediaPlayer1.Ctlcontrols.play();
}
  MCI Command String和Windows Media Player都有非常丰富的功能接口,这里不能一一介绍,可以参考MSDN中的具体描述.

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。