예제 #1
0
        public BookingCustomerPage()
        {
            InitializeComponent();

            NameEntry.Completed  += (s, e) => EmailEntry.Focus();
            EmailEntry.Completed += (s, e) => MobileEntry.Focus();
        }
예제 #2
0
        public Login_Page2()
        {
            InitializeComponent();
            _webApiRestClient       = new WebApiRestClient();
            MobileEntryTitle.Text   = AppResources.MobileEntryTitle;
            MobileEntry.Placeholder = AppResources.LoginEntryPlaceHolder;
            NextButton.Text         = "";
            NextButton.IsEnabled    = false;
            //getCountryCode();

            countryCodeList.ItemSelected += CountryCodeList_ItemSelected;
            MessagingCenter.Subscribe <string>(this, "EntryFocus", (sender) =>
            {
                MobileEntry.Focus();
            });
        }