Beispiel #1
0
        partial void BtnSignup_TouchUpInside(UIButton sender)
        {
            var user = new User();

            user.Name               = txtFullName.Text;
            user.Email              = txtEmail.Text;
            user.ZipCode            = txtZipCode.Text;
            user.Password           = txtPassword.Text;
            user.ProfilePicBloblUri = null;
            BaseVC.newUser          = user;
            CreateAccountJobVC nav = (CreateAccountJobVC)Storyboard.InstantiateViewController("CreateAccountJobVC");

            this.NavigationController.PushViewController(nav, true);
        }
Beispiel #2
0
        partial void BtnSignup_TouchUpInside(UIButton sender)
        {
            CreateAccountJobVC nav = (CreateAccountJobVC)Storyboard.InstantiateViewController("CreateAccountJobVC");

            this.NavigationController.PushViewController(nav, true);
        }