示例#1
0
        async void AttemptToAdvance()
        {
            if (string.IsNullOrWhiteSpace(entry.Text))
            {
                await DisplayAlert("Form Incomplete",
                                   "Please enter your phone number. Providing it is important for a secure experience.",
                                   "Ok");

                return;
            }

            controller.NextPage();
        }
示例#2
0
        async void AttemptToAdvance()
        {
            if (string.IsNullOrWhiteSpace(firstEntry.Text) ||
                string.IsNullOrWhiteSpace(secondEntry.Text))
            {
                await DisplayAlert("Form Incomplete",
                                   "Please enter both your first and last name. Providing a name is important for a secure experience.",
                                   "Ok");

                return;
            }

            controller.NextPage();
        }
示例#3
0
 private void HyperlinkButton_Click5(object sender, System.EventArgs e)
 {
     controller.NextPage();
 }