How to set keyboard focus to a TextBox in Powershell

后端 未结 5 1303
醉梦人生
醉梦人生 2021-01-20 17:34

I\'m looking to find out how to automatically set the keyboard focus to a text box in powershell.

I have a script that asks the user to select an option from a drop

5条回答
  •  不思量自难忘°
    2021-01-20 17:43

    Try the Select method in case Ficus doesn't work:

    if($textbox.CanFocus)
    {
       $textbox.Focus()
    else
    {
       $textbox.Select()
    }
    

提交回复
热议问题