コード例 #1
0
ファイル: ChecklistHelper.cs プロジェクト: reevesand/CCPApp
 public static async void ChecklistButtonClicked(object sender, EventArgs e)
 {
     ChecklistButton button = (ChecklistButton)sender;
     ChecklistPage   page   = new ChecklistPage(button.checklist);
     await App.Navigation.PushAsync(page);
 }
コード例 #2
0
ファイル: App.cs プロジェクト: raghurana/ChecklistXamForms
 public App()
 {
     // The root page of your application
     MainPage = new ChecklistPage();
 }