c#鼠标点击textbox时自动选中内容

2025-01-03 10:40:07
推荐回答(4个)
回答1:

在 Click 事件里调用 SelectAll()

private void textBox1_Click( object sender, EventArgs e )
{
textBox1.SelectAll();
}

回答2:

在 Click 事件里:((TextBox) sender).SelectAll ();

回答3:

在textBox1.Enter事件中写入
textBox1.SelectAll()

private void textBox1_Enter(object sender, EventArgs e)
{
textBox1.SelectAll();
}

回答4:

这需要运用javascript来达到目的。