TextBox 滚动条和快捷键全选

来源:互联网 发布:手机怎么在淘宝开网店 编辑:程序博客网 时间:2024/04/29 18:31
        private void textBox1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Modifiers == Keys.Control && e.KeyCode == Keys.A)
            {
                ((TextBox)sender).SelectAll();
            }  
        }
0 0