让窗体加载完毕的时候光标在textbox1里面
方法一:
直接设Textbox1的Tabindex=0
方法二:
在form_load事件里写
private void Form1_Load(object sender, EventArgs e) { this.Show(); textBox1.Focus(); }
让窗体加载完毕的时候光标在textbox1里面
方法一:
直接设Textbox1的Tabindex=0
方法二:
在form_load事件里写
private void Form1_Load(object sender, EventArgs e) { this.Show(); textBox1.Focus(); }