목록XF (1)
나무 숲
Xamarin / 확인버튼 클릭 시 다음 Entry로 이동
Move to next Entry if Enter key pressed 주로 회원가입 등 연속된 폼 입력을 채울 때 사용되는 스킬이다. ⚡Completed Event를 사용한다. Ex1. Move to Next Entry's End of the text NameEntry.Completed += (sender, e) => { NameEntry.Unfocus(); EmailEntry.Focus(); EmailEntry.CursorPosition = EmailEntry.Text.Length; }; EmailEntry.Completed += (sender, e) => { EmailEntry.Unfocus(); PasswordEntry.Focus(); PasswordEntry.CursorPosition = Pas..
Career/모바일
2020. 12. 12. 10:45