Exemple #1
0
 public void ShowError(string text)
 {
     Dispatcher.BeginInvoke(DispatcherPriority.Normal,
                            (ThreadStart) delegate()
     {
         NotificationSource.Show(text, NotificationType.Error);
     }
                            );
 }
Exemple #2
0
 public void ShowError(string message)
 {
     NotificationSource.Show(message, NotificationType.Error);
 }
Exemple #3
0
 public void ShowWarning(string message)
 {
     NotificationSource.Show(message, NotificationType.Warning);
 }
Exemple #4
0
 public void ShowSuccess(string message)
 {
     NotificationSource.Show(message, NotificationType.Success);
 }
Exemple #5
0
 public void ShowInformation(string message)
 {
     NotificationSource.Show(message, NotificationType.Information);
 }