コード例 #1
0
ファイル: PellDialog.cs プロジェクト: twiztedcyph/XamTest
 public async static Task DisplaySuccess(this Page page, string message, PelDialogButton button)
 {
     await page.DisplayPelAlert(PelDialogType.Success, message, button);
 }
コード例 #2
0
ファイル: PellDialog.cs プロジェクト: twiztedcyph/XamTest
 public async static Task DisplayPelAlert(this Page page, PelDialogType type, string message, PelDialogButton button)
 {
     Debug.WriteLine("Display " + type.ToString() + " Dialog : " + message);
     await page.DisplayAlert(type.ToString(), message, button.ToString());
 }