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

2021-02-09 04:24

阅读:658

标签:extern   import   dll   param   忽略   命名空间   声明   services   kernel32   

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); // 这个声音还不错

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

标签:extern   import   dll   param   忽略   命名空间   声明   services   kernel32   

原文地址:https://www.cnblogs.com/LuoEast/p/8568115.html


评论


亲,登录后才可以留言!