码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2018-03-14 16:54:09      阅读:736      评论:0      收藏:0      [点我收藏+]

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

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

 

    1. // 声明  
    2. public class BeepUp  
    3. {  
    4.     /// <param name="iFrequency">声音频率(从37Hz到32767Hz)。在windows95中忽略</param>  
    5.     /// <param name="iDuration">声音的持续时间,以毫秒为单位。</param>  
    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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!