有没有办法在C#WPF中发出哔声?
我一直在寻找WPF的哔哔声,但我能找到的只是在普通的Windows窗体中发出哔哔声。
答案 0 :(得分:21)
你可以发出哔哔声"声音使用:
SystemSounds.Beep.Play();
答案 1 :(得分:7)
// Plays the sound associated with the Beep system event.
SystemSounds.Beep.Play();
这适用于WPF(http://msdn.microsoft.com/en-us/library/system.media.systemsounds.beep(v=vs.110).aspx)
答案 2 :(得分:3)
答案 3 :(得分:1)
你可以玩任何东西:
SoundPlayer snd = new SoundPlayer(filePath);
snd.Play();