C#指定控件获取焦点

在Form的Load事件中,有如下两种写法可以实现光标定位到指定控件:

ControlName.Select();
this.ActiveControl = ControlName;

或者:

ControlName.Focus();

你可能感兴趣的:(C#,c#)