撥放音樂需要用到 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格式的音樂檔可以參考這篇

arrow
arrow
    全站熱搜

    東勢厝滴yang 發表在 痞客邦 留言(0) 人氣()