如何在C#TextBox中允许Ctrl-A和Ctrl-Backspace等内容

前端之家收集整理的这篇文章主要介绍了如何在C#TextBox中允许Ctrl-A和Ctrl-Backspace等内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个System. Windows.Forms.TextBox是多行的,但它不接受像Control-A和Control-Backspace这样的命令.

Control-A不执行任何操作,Control-Backspace插入一个框字符.

“启用快捷方式”属性设置为true.

解决方法

从MSDN上的 ShortcutsEnabled属性

The TextBox control does not support the CTRL+A shortcut key when the Multiline property value is true.

你必须自己实现.

这样的事情应该有效:

private void textBox1_KeyDown(object sender,KeyEventArgs e)
    {
        if (e.Control & e.KeyCode == Keys.A)
        {
            textBox1.SelectAll();
        }
        else if (e.Control & e.KeyCode == Keys.Back)
        {
            SendKeys.SendWait("^+{LEFT}{BACKSPACE}");
        }
    }
原文链接:https://www.f2er.com/csharp/94536.html

猜你在找的C#相关文章