Ejemplo n.º 1
0
 public async static Task DisplaySuccess(this Page page, string message, PelDialogButton button)
 {
     await page.DisplayPelAlert(PelDialogType.Success, message, button);
 }
Ejemplo n.º 2
0
 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());
 }