private void Telefono_TextChanged(object sender, TextChangedEventArgs e)
 {
     if (RegexUtilities.IsPhoneValid(Telefono.Text))
     {
         ErrorTelefono.Text = "";
     }
     else
     {
         ErrorTelefono.IsVisible = true;
         ErrorTelefono.Text      = "Debe contener 9 números";
     }
     isFormValid();
 }
        private void  isFormValid()
        {
            if (RegexUtilities.IsEmailValid(Email.Text) &&
                RegexUtilities.IsPasswordValid(Password.Text) &&
                RegexUtilities.IsNickNameValid(NombreUsuario.Text) &&
                RegexUtilities.IsNameValid(Nombre.Text) &&
                RegexUtilities.IsLastName(Apellido.Text) &&
                RegexUtilities.IsRangeAge(Edad.Text) &&
                RegexUtilities.IsPhoneValid(Telefono.Text))
            {
                BontonRegistrar.IsEnabled = true;

                BontonRegistrar.BackgroundColor = Color.Green;
            }
            else
            {
                BontonRegistrar.IsEnabled       = false;
                BontonRegistrar.BackgroundColor = Color.Gray;
            }
        }