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

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -