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
Post a Comment