Exemplo n.º 1
0
 public static async void ChecklistButtonClicked(object sender, EventArgs e)
 {
     ChecklistButton button = (ChecklistButton)sender;
     ChecklistPage   page   = new ChecklistPage(button.checklist);
     await App.Navigation.PushAsync(page);
 }
Exemplo n.º 2
0
 public App()
 {
     // The root page of your application
     MainPage = new ChecklistPage();
 }