gpt4 book ai didi

winforms - 按 CTRL-A 停止响铃 (WinForms)

转载 作者:行者123 更新时间:2023-12-02 18:41:31 25 4
gpt4 key购买 nike

当使用 CTRL-A 在 Winforms 应用程序中选择文本时,有什么办法可以阻止系统铃声响起吗?

问题就在这里。创建一个 Winforms 项目。在窗体上放置一个文本框,并在窗体上添加以下事件处理程序,以允许 CTRL-A 选择文本框中的所有文本(无论哪个控件具有焦点)。

void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.A && e.Modifiers == Keys.Control)
{
System.Diagnostics.Debug.WriteLine("Control and A were pressed.");
txtContent.SelectionStart = 0;
txtContent.SelectionLength = txtContent.Text.Length;
txtContent.Focus();
e.Handled = true;
}
}

它可以工作,但尽管 e.Handled = true,每次按下 CTRL-A 时系统铃声都会响起。

<小时/>

感谢您的回复。

表单上的 KeyPreview 设置为 true - 但这并不能阻止系统铃声响起 - 这是我试图解决的问题 - 烦人。

最佳答案

    private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.Control && e.KeyCode == Keys.A)
{
this.textBox1.SelectAll();
e.SuppressKeyPress = true;
}
}

希望这有帮助

关于winforms - 按 CTRL-A 停止响铃 (WinForms),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/225711/

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