gpt4 book ai didi

audio - C#避免在按下KeyDown时发出哔哔声?

转载 作者:行者123 更新时间:2023-12-03 02:08:36 27 4
gpt4 key购买 nike

在按文本框中的Enter键时,删除哔声时出现问题。

这不起作用:

private void textBox3_KeyDown(object sender, KeyEventArgs e)
{

if (e.KeyCode == Keys.Enter)
{
e.SuppressKeyPress = true;
button1.PerformClick();
}

}

最佳答案

我找到了答案!

 private void textBox2_KeyDown(object sender, KeyEventArgs e)
{
//Pressing ENTER
if (e.KeyCode == Keys.Enter)
{
button1.Select();
e.SuppressKeyPress = true;
SendKeys.Send("{ENTER}");
}

}

关于audio - C#避免在按下KeyDown时发出哔哔声?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26073363/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com