撥放音樂需要用到 Media方法所以先 using 進來,
using System.Media;
//此方法是將音樂檔放置於專案bin目錄下
SoundPlayer myMusic=new SoundPlayer("music.wav");
myMusic.Play();
//如果沒放在專案的bin下,需指定音樂檔路徑
SoundPlayer myMusic=new SoundPlayer(@"C:\music.wav");
myMusic.Play();
系統也有預設的音效:
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();
如果要撥放.mp3格式的音樂檔可以參考這篇
全站熱搜
留言列表