public void ShowError(string text) { Dispatcher.BeginInvoke(DispatcherPriority.Normal, (ThreadStart) delegate() { NotificationSource.Show(text, NotificationType.Error); } ); }
public void ShowError(string message) { NotificationSource.Show(message, NotificationType.Error); }
public void ShowWarning(string message) { NotificationSource.Show(message, NotificationType.Warning); }
public void ShowSuccess(string message) { NotificationSource.Show(message, NotificationType.Success); }
public void ShowInformation(string message) { NotificationSource.Show(message, NotificationType.Information); }