首页 > 代码库 > c# WinForm加载焦点

c# WinForm加载焦点

两种方法:

1 在Load中设置 
this.ActiveControl = this.textBox;

2 this.textBox.Focus(); 
但在Form_Load设置会无效,可在Form_Paint()中设置.

c# WinForm加载焦点