无法禁用文本框按键事件上的蜂鸣音
本文关键字:事件 文本 | 更新日期: 2023-09-27 18:34:15
>以下是我在文本框KeyDown()
事件上按"Enter"时禁用蜂鸣音的代码:
if (e.KeyCode == Keys.Enter)
{
e.SuppressKeyPress = true;
SaveData();
e.Handled = true;
}
但是当我在文本框上按"输入"时,它会一直发出哔哔声。我做错了什么?
从您的注释中,显示消息框将干扰您对 SuppressKeyPress 属性的设置。
解决方法是将消息框的显示延迟到方法完成后:
void TextBox1_KeyDown(object sender, KeyEventArgs e) {
if (e.KeyCode == Keys.Enter) {
e.SuppressKeyPress = true;
this.BeginInvoke(new Action(() => SaveData()));
}
}
编辑
请注意,LarsTech(如下(提供的答案是一个更好的方法。
<小时 />抱歉,我刚刚意识到您有一个消息框显示。
您可以做的是有一个Timer
并让它从SaveData()
方法中触发。
private void Timer1_Tick(System.Object sender, System.EventArgs e)
{
Timer1.Enabled = false;
SaveData();
}
然后在TextBox
按键事件中,执行以下操作:
if (e.KeyCode == Keys.Enter) {
e.SuppressKeyPress = true;
Timer1.Enabled = true;
}
这似乎有效...
您可以尝试创建自己的文本框并像这样处理keydown事件:
public class MyTextBox : TextBox
{
protected override void OnKeyDown(KeyEventArgs e)
{
switch (e.KeyCode)
{
case (Keys.Return):
/*
* Your Code to handle the event
*
*/
return; //Not calling base method, to stop 'ding'
}
base.OnKeyDown(e);
}
}