怎樣讓TextBox得到焦點,TextBox控件在TabControl里面!How to focus TextBox control inside of TabControl?

来源:互联网 发布:web通讯录管理系统php 编辑:程序博客网 时间:2024/06/06 02:14

 


TabControl1.Focus()

 if(this.txtEmployeeCardId.CanFocus)
    {
     this.txtEmployeeCardId.Focus();
    }

 

解決辦法:

Are you trying to do this from, say within Form.Load? If so, try code like

Me.ActiveControl = Me.TextBox1!

 

可以使用this.ActiveControl = this.txtEmployeeCardId;

 if(this.txtEmployeeCardId.CanFocus)
    {
     this.txtEmployeeCardId.Focus();
    }

原创粉丝点击