private void hody_KeyDown(object sender, KeyEventArgs e)
{
TextBox txtBox = sender as TextBox;
if (txtBox != null && txtBox.Multiline == true && e.Control == true && e.KeyCode == Keys.A)
txtBox.SelectAll();
}
No comments:
Post a Comment