C# Winform 程序 使用电脑自带的喇叭,输出报警声?
的有关信息介绍如下:你可以使用系统自带的声音,例如/// 声音频率(从37Hz到32767Hz)。在windows95中忽略 /// 声音的持续时间,以毫秒为单位。 [DllImport("Kernel32.dll")] //引入命名空间 using System.Runtime.InteropServices; public static extern bool Beep(int frequency, int duration);这个是你自定义的声音,可以在你点击按钮时调用Beep(800,200);该函数又例如:public enum MessageBeepType { Default = -1, Ok = 0x00000000, Error = 0x00000010, Question = 0x00000020, Warning = 0x00000030, Information = 0x00000040 } [DllImport("user32.dll", SetLastError = true)] public static extern bool MessageBeep(MessageBeepType type);这个是系统的声音,可以在你点击按钮时调用MessageBeep(MessageBeepType.Ok);该函数希望对你有帮助