xaml - Scrolling up the screen when Keyboard appears -


is there way scroll-up view required amount when soft-keyboard shows up? page in app has lot of textboxes , when keyboard shows up, lot of them hide under , user has manually scroll down/hide keyboard enter values in other textboxes.

how can scroll-up page amount improve ux?

you can have keydown event set each textbox , inside event handler check if enter key pressed shift focus next textbox.

keydown="txtmessage1_keydown"    private void txtmessage1_keydown(object sender, keyeventargs e)     {         if (e.key == key.enter)         {           nexttextbox.focus();         }     } 

Comments

Popular posts from this blog

java - BeanIO write annotated class to fixedlength -

Using Java 8 lambdas/transformations to combine and flatten two Maps -

How to connect android app to App engine -