How Do I Give a Textbox Focus in Silverlight?

前端 未结 15 1775
無奈伤痛
無奈伤痛 2020-12-01 07:49

In my Silverlight application, I can\'t seem to bring focus to a TextBox control. On the recommendation of various posts, I\'ve set the IsTabStop property to True and I\'m

15条回答
  •  旧巷少年郎
    2020-12-01 08:05

    Plugin.Focus(); 
    

    didn't work for me.

    Calling

     Dispatcher.BeginInvoke(() => { tbNewText.Focus();});
    

    From the Load event worked.

提交回复
热议问题