c# - WinRT how to not have page go up when virtual key board appears Windows Phone 8.1 -


i have autosuggestbox in xaml page windows phone 8.1 app , when click on autosuggestbox whole page goes up. know how disable feature?

thanks

edit: here code fix, thank peter torr - msft.

windows.ui.viewmanagement.inputpane.getforcurrentview().showing += (s, args) =>             {                 args.ensuredfocusedelementinview = true;             }; 

you need handle inputpane.showing event, , set ensuredfocusedelementinview property true. stop windows trying make item come view.


Comments

Popular posts from this blog

javascript - Complete OpenIDConnect auth when requesting via Ajax -

java - Get more than One value and display it -

c# - Replace text in MailItem Body -