Reputation: 343
Keep focus on textbox in windows phone, I just want SMS app (first party app) behavior.
I have page with textbox and app bar button. When I enter some text and hit the app bar button it looses the textbox focus and keyboard down but in SMS app it is not like that.
How can I keep the focus in textbox ?
Currently, I am trying focus when I hit the button but some flickering is happen right now.
Upvotes: 1
Views: 667
Reputation: 125630
You can set focus on TextBox
manually using Focus()
method call. It returns true
or false
depending on how successful the operation was (focus not always can be set).
Upvotes: 1