Windows 的各種聲音

nklixiujun發表於2009-02-09

呼叫.Net庫的System.Media.SystemSounds庫的各種發聲函式,發出系統自帶的聲音。

1、Beep: System.Media.SystemSounds.Beep.Play()

2、Hand: System.Media.SystemSounds.Hand.Play()

3、Asterisk: System.Media.SystemSounds.Asterisk.Play()

4、Question: System.Media.SystemSounds.Question.Play()

5、Exclamation: System.Media.SystemSounds.Exclamation.Play()

6、Console Beep: Console.Beep(int frequency, int duration);

7、SoundPlayer: 宣告空間using System.Media;

SoundPlayer Mplayer = new SoundPlayer();
string filename = Application.StartupPath + "";
Mplayer.SoundLocation = filename;
Mplayer.Load();
Mplayer.PlaySync();

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10897203/viewspace-1017077/,如需轉載,請註明出處,否則將追究法律責任。

相關文章