Exemple #1
0
 public MainTabbedPage(string firstName, string lastName, string email, string password)
 {
     InitializeComponent();
     this.Title     = "My Day App";
     BindingContext = new ViewModels.TabbedPageViewModel();
     if (!(String.IsNullOrEmpty(firstName) || String.IsNullOrEmpty(lastName) || String.IsNullOrEmpty(email) || String.IsNullOrEmpty(password)))
     {
         FirstName.Text = firstName;
         LastName.Text  = lastName;
         Email.Text     = email;
         Password.Text  = password;
     }
 }
Exemple #2
0
 public MainTabbedPage()
 {
     InitializeComponent();
     this.Title     = "My Day App";
     BindingContext = new ViewModels.TabbedPageViewModel();
 }