user1343947
user1343947

Reputation: 31

Windows phone 8.1 Universal app - Show the Button all the time

In Windows phone 8.1 universal app, Appbar currently support only icons, not the buttons. If i use the button, Button is hidden below the keyboard.

I need help to achieve either one of the below

  1. I want to show the Button below the Keyboard, Any ways to achieve it?

  2. Or, Move the Button above the Keyboard when keyboard appears. When Keyboard is not shown, Button should be at the Bottom of the page. Is there any way to do this?

It helps User to see the Button clearly all the time.

Upvotes: 0

Views: 34

Answers (1)

N Jacobs
N Jacobs

Reputation: 341

React on an OnInputPaneShowing event. The size of the input control is passed into this function and you can update the position of the button according this size.

See MSDN respond to the keyboard presence and MSDN occluded rect property for more info on how to do this.

Upvotes: 0

Related Questions