// textBox1 フォーカスを取得したときに、テキストを全選択状態にするイベント処理
private void textBox1_Enter(object sender, System.EventArgs e) {
this.textBox1.SelectAll();
}
テキストボックスがフォーカスを取得した時にテキストを全選択状態にする
コメントをどうぞ
// textBox1 フォーカスを取得したときに、テキストを全選択状態にするイベント処理
private void textBox1_Enter(object sender, System.EventArgs e) {
this.textBox1.SelectAll();
}