public ConfirmIdentityView(ViewGroup root) : base(Resource.Layout.ConfirmIdentity, root)
        {
            Title = PowerPlannerResources.GetString("Settings_ConfirmIdentityPage.Title");

            AutofillHelper.EnableForAll(this);

            FindViewById <Button>(Resource.Id.ButtonConfirmIdentity).Click += delegate { ViewModel.Continue(); };
        }
        public ChangeEmailView(ViewGroup root) : base(Resource.Layout.ChangeEmail, root)
        {
            _buttonUpdateEmail = FindViewById <Button>(Resource.Id.ButtonUpdateEmail);
            _textViewError     = FindViewById <TextView>(Resource.Id.TextViewError);
            _editTextEmail     = FindViewById <TextInputEditText>(Resource.Id.EditTextEmail);

            _buttonUpdateEmail.Click += _buttonChangeEmail_Click;

            Title = PowerPlannerResources.GetString("Settings_ChangeEmailPage.Title");

            AutofillHelper.EnableForAll(this);
        }
        public ResetPasswordView(ViewGroup root) : base(Resource.Layout.ResetPassword, root)
        {
            Title = PowerPlannerResources.GetString("ForgotPassword_ButtonHeader.Content").ToUpper();

            AutofillHelper.EnableForAll(this);
        }
        public CreateAccountView(ViewGroup root) : base(Resource.Layout.CreateAccount, root)
        {
            Title = PowerPlannerResources.GetString("CreateAccountPage.Title");

            AutofillHelper.EnableForAll(this);
        }
Example #5
0
 public LoginView(ViewGroup root) : base(Resource.Layout.Login, root)
 {
     Title = PowerPlannerResources.GetString("LoginPage.Title");
     AutofillHelper.EnableForAll(this);
 }
Example #6
0
        public ForgotUsernameView(ViewGroup root) : base(Resource.Layout.ForgotUsername, root)
        {
            Title = PowerPlannerResources.GetString("ForgotUsername_String_MessageHeader").ToUpper();

            AutofillHelper.EnableForAll(this);
        }