LoginSignup
14
11

More than 5 years have passed since last update.

C#: テキストボックスで、Ctrl+Aですべて選択できるようにする

Posted at
private void textBox_KeyDown(object sender, KeyEventArgs e)
{
    if (e.Control && e.KeyCode == Keys.A)
        textBox.SelectAll();
}

なんで標準で入ってないんでしょうね…

14
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
11