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