Textbox not clickable but editable

后端 未结 4 1734
攒了一身酷
攒了一身酷 2021-01-27 09:43

I have a small form with 10 textboxes, I have them set in the right Tab Order currently the way I want them to Tab To. I was wondering if there is a way to set the textboxes up

4条回答
  •  逝去的感伤
    2021-01-27 10:43

    Set all textboxes' Enabled property to false except the first one. On the TextChanged Event, check if it the Text is empty or not. if it was not empty, Enable the next TextBox and so on...

提交回复
热议问题