Pavel Durov
Pavel Durov

Reputation: 1297

InputPane disable hiding (Windows Phone 8.1)

I am developing windows phone app and I need in some cases to disable the InputPane hiding functionality when the ui refocuses on some other elements.

Currently I am doing so by refocusing to TextBox - but it causes "flickering" of my keyboard, cause its hiding and reopening very quickly.

Is there any way to cancel InputPane hiding on Hiding event or any other way to accomplish this behavior?

Thanks in advance :)

Upvotes: 1

Views: 91

Answers (1)

MohanRajNK
MohanRajNK

Reputation: 895

You have to set IsTabStop property to false on the other elements so that they wont recieve focus in UI interaction.

You can check about IsTabStop property here - Control.IsTabStop

Upvotes: 4

Related Questions