Alternative to set focus from within the Enter event

前端 未结 3 1081
栀梦
栀梦 2021-01-22 18:27

I have a textbox and in some cases in Enter event I need to set the focus to a different textbox.

I tried that code:

 private void TextBox1_Enter(object          


        
3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-22 18:58

    textBox.Select();
    

    or

    textBox.Focus();
    

    or set TabIndex = 0 from properties of that textBox.

    both methods are use to set focus on textBox in C#, .NET

提交回复
热议问题