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

How to connect android app to App engine -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

php - display validation error message next to the textbox in codeigniter -