2010年2月24日 星期三

C# TextBox 全選問題

TextBox 全選問

private void textBox1_Enter(object sender, EventArgs e)
{
textBox1.SelectAll();
}
private void textBox1_MouseClick(object sender, EventArgs e)
{
textBox1.SelectAll();
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1 .GotFocus += new EventHandler(textBox1_Enter);
textBox1.MouseClick +=new MouseEventHandler(textBox1_MouseClick);
}


http://social.msdn.microsoft.com/Forums/zh-TW/233/thread/bb792ca0-386c-4737-980a-0a3a4e2d190f

沒有留言:

張貼留言