在 Click 事件里调用 SelectAll()
private void textBox1_Click( object sender, EventArgs e )
{
textBox1.SelectAll();
}
在 Click 事件里:((TextBox) sender).SelectAll ();
在textBox1.Enter事件中写入
textBox1.SelectAll()
private void textBox1_Enter(object sender, EventArgs e)
{
textBox1.SelectAll();
}
这需要运用javascript来达到目的。