public void ShowScreenShotNotification(string FilePath) { if (!_settings.Tray.ShowNotifications) { return; } _notificationStack.Add(new ScreenShotBalloon(FilePath)); Show(); }
public void ShowMessage(string Message) { if (!_settings.UI.TrayNotify) { return; } _notificationStack.Add(new StatusBalloon(Message, false)); Show(); }
public void ShowNotification(INotification Notification) { if (!_settings.Tray.ShowNotifications) { return; } _notificationStack.Add(new NotificationBalloon(Notification)); Show(); }