Ejemplo n.º 1
0
 async void cdAccounts(object sender, System.EventArgs e)
 {
     System.Diagnostics.Debug.WriteLine(" Account Reg button clicked");
     regClub.ClubName = cdClubName.Text;
     var cpage = new cdAccounts(regAccount, regClub, regPassword);
     await Navigation.PushModalAsync(cpage);
 }
Ejemplo n.º 2
0
        async void cdRegistration(object sender, System.EventArgs e)
        {
            Account pAccount  = new Account();
            Club    pClub     = new Club();
            String  pPassword = "";

            System.Diagnostics.Debug.WriteLine(" Clicked Registraion Button");
            var tpage = new cdAccounts(pAccount, pClub, pPassword);
            await Navigation.PushModalAsync(tpage);
        }