C#调用系统蜂鸣(需要发出警告时挺好用的 即使没有声卡)

http://heavenslv.iteye.com/blog/1033870

 

    1. // 声明  
    2. public class BeepUp  
    3. {  
    4.     /// 声音频率(从37Hz到32767Hz)。在windows95中忽略  
    5.     /// 声音的持续时间,以毫秒为单位。  
    6.     [DllImport("Kernel32.dll")] //引入命名空间 using System.Runtime.InteropServices;  
    7.     public static extern bool Beep(int frequency, int duration);  
    8. }  
    9.   
    10. // 调用  
    11. BeepUp.Beep(500, 700); // 这个声音还不错

转载于:https://www.cnblogs.com/LuoEast/p/8568115.html

你可能感兴趣的:(C#调用系统蜂鸣(需要发出警告时挺好用的 即使没有声卡))