如果你的窗体上有多个可以获得焦点的控件,你把TextBox的TabIndex设置得大一点就可以了 在加载事件里,不让它选中就行了。。 private void Form1_Load(object sender, EventArgs e) { textBox1.Select(0, 0); }