Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デスクトップ C# フォームまたはウィンドウには、TextBox という検索ボックスがあります。ユーザーが Ctrl + A を使用してテキストを強調表示しようとすると、システム リリース音が鳴ります。テキスト ボックス コントロールが Ctrl + A を受け入れるようにするものはありますか?
これを試してください:
private void textBox1_keyDown(object sender, KeyEventArgs e) { if (e.Control & e.KeyCode == Keys.A) textBox1.SelectAll(); }