如何禁用C#的消息框提示音?提示音、消息

2023-09-03 01:01:00 作者:作业在葬礼上唱解放

每当触发在我的C#程序中使用一个消息我从我的电脑一个非常恼人的蜂鸣声。如何使用C#code我禁用此提示音。

在code我现在用的是很简单的。

 的MessageBox.show(文字);
 

解决方案

从搜索我做它看起来像蜂鸣声已硬连线到Win32的消息框功能:

Bytes VB论坛

所以,你需要可以写你自己的方法或停止在硬件的提示音。前者将适用于每个人,后者只为你。

Whenever trigger a messagebox used in my C# program I get a very annoying beep from my computer. How do I disable this beep using C# code.

声音和消息框关闭了怎么打开

The code I am using is very simple.

MessageBox.show("text");

解决方案

From the searching I've done it looks like the beep is hardwired into the Win32 message box function:

Bytes VB Forums

So you need to either write your own method or stop the beep in the hardware. The former will work for everyone, the latter just for you.