Set focus on textbox in WPF

后端 未结 9 820
-上瘾入骨i
-上瘾入骨i 2020-11-28 08:03

How to set the focus on an TextBox element in WPF

I have this code:

txtCompanyID.Focusable = true;
txtCompanyID.Focus();
9条回答
  •  难免孤独
    2020-11-28 08:10

    try FocusManager.SetFocusedElement

    FocusManager.SetFocusedElement(parentElement, txtCompanyID)
    

提交回复
热议问题