Esempio n. 1
0
 public static void ShowError(string message, string caption)
 {
     Awful.AppDataModel model = Awful.App.Model;
     Instance.ShowMessage(model.DefaultNotification, message, caption);
 }
Esempio n. 2
0
 public static void Show(NotificationMethod method, string message, string caption,
                         Action notificationTapped)
 {
     Awful.AppDataModel model = Awful.App.Model;
     Instance.ShowMessage(method, message, caption, notificationTapped);
 }